diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2022-02-01 15:22:41 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2022-02-01 15:22:41 +0100 |
commit | 97e55bdc5cdf59304af739e65f416320bcbcf599 (patch) | |
tree | 32fde9596a10a05f6febd21442c4d24c3328baf9 /debian | |
parent | 0169fc10b4dc6f2872d0e834c4f1ec942f902b3f (diff) |
Add home dir for user/group saned
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/sane-utils.postinst | 7 |
2 files changed, 12 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index aee6848..3234b1c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +sane-backends (1.0.32-5) UNRELEASED; urgency=medium + + * Add home dir for user/group saned. + + -- Jörg Frings-Fürst <debian@jff.email> Tue, 05 Oct 2021 11:56:18 +0200 + sane-backends (1.0.32-4) unstable; urgency=medium * Upload into unstable. diff --git a/debian/sane-utils.postinst b/debian/sane-utils.postinst index 2d47e78..cde28cf 100644 --- a/debian/sane-utils.postinst +++ b/debian/sane-utils.postinst @@ -43,7 +43,7 @@ if [ "$1" = "configure" ] || [ "$1" = "reconfigure" ]; then # Create saned user/group if they do not exist if ! getent passwd | grep -q "^saned:"; then echo "Adding saned group and user..." - adduser --home /var/lib/saned --quiet --system --no-create-home --group saned || true + adduser --home /var/lib/saned --quiet --system --group saned || true fi # Move home from /home/saned to /var/lib/saned (since 1.0.24-6) @@ -61,6 +61,11 @@ if [ "$1" = "configure" ] || [ "$1" = "reconfigure" ]; then usermod -d /var/lib/saned saned fi fi + + if [ ! -d /var/lib/saned saned ] ; then + usermod -d /var/lib/saned saned + fi + if [ "$SANED_IN_SCANNER" = "true" ]; then adduser --quiet saned scanner else |