diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2022-10-02 09:46:29 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2022-10-02 09:46:29 +0200 |
commit | 9910a66b994fca5bba52a211a580dbc084b7ff98 (patch) | |
tree | a77fb8a6b747fb69a0b748fc2e33d3d5932a0db9 /debian/sane-utils.postrm | |
parent | 1e25318379249c8c4c2c55c741b409a858b1f52e (diff) |
Fix purge error; Fix inetd handling
Diffstat (limited to 'debian/sane-utils.postrm')
-rw-r--r-- | debian/sane-utils.postrm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/debian/sane-utils.postrm b/debian/sane-utils.postrm index f5a0394..c748af6 100644 --- a/debian/sane-utils.postrm +++ b/debian/sane-utils.postrm @@ -1,10 +1,6 @@ #!/bin/sh set -e -# -# set -e are disabled because pathfind update-inetd -# gives an piuparts error. -# # # POSIX-compliant shell function @@ -54,8 +50,8 @@ if [ "$1" = purge ] ; then # remove user / group # if pathfind deluser ; then - deluser -q --group --system saned || true deluser -q --system --remove-home saned || true + deluser -q --group --system saned || true fi fi |