diff options
-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 |