diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2021-04-30 19:51:20 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2021-04-30 19:51:20 +0200 |
commit | 57c64f1acca5b544b2f088097c7296649b7e122e (patch) | |
tree | d9bf7687989663a3875f363a5052be19361716ae /debian/sane-utils.postrm | |
parent | 93500879a52aa00d32bb85e0fa69bacea84c883c (diff) |
Fix package doesn't purge cleanly (fix test with pathfind())
Diffstat (limited to 'debian/sane-utils.postrm')
-rw-r--r-- | debian/sane-utils.postrm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/sane-utils.postrm b/debian/sane-utils.postrm index 20d95a7..30e2a2d 100644 --- a/debian/sane-utils.postrm +++ b/debian/sane-utils.postrm @@ -26,7 +26,7 @@ pathfind() { if [ "$1" = purge ] ; then - pathfind update-inetd || true + pathfind update-inetd if [ $? = 0 ] ; then update-inetd --remove sane-port || true update-inetd --remove "#<off># sane-port" || true @@ -54,7 +54,7 @@ if [ "$1" = purge ] ; then # # remove user / group # - pathfind deluser || true + pathfind deluser if [ $? = 0 ] ; then deluser -q --group --system saned || true deluser -q --group --system scanner || true |