summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2021-06-16 14:54:34 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2021-06-16 14:54:34 +0200
commitcf1a4e9bd5de825681006ab8e3dcf338c548fee7 (patch)
treee58705b5aa70c26e9a1e96a68c3ad9f467f3887f
parenta711fdac5db90cd872a5b18b4a923d66b67a202b (diff)
Fix pathfind handling
-rw-r--r--debian/changelog4
-rw-r--r--debian/sane-utils.postrm6
2 files changed, 4 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog
index 34b27d3..94ddcb5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,6 @@
-sane-backends (1.0.32-2) UNRELEASED; urgency=medium
+sane-backends (1.0.32-2) UNRELEASED; urgency=high
- *
+ * debian/sane-utils.postrm: Fix pathfind handling (Closes: #989879).
-- Jörg Frings-Fürst <debian@jff.email> Wed, 16 Jun 2021 14:28:39 +0200
diff --git a/debian/sane-utils.postrm b/debian/sane-utils.postrm
index 30e2a2d..9f4ef99 100644
--- a/debian/sane-utils.postrm
+++ b/debian/sane-utils.postrm
@@ -26,8 +26,7 @@ pathfind() {
if [ "$1" = purge ] ; then
- pathfind update-inetd
- if [ $? = 0 ] ; then
+ if pathfind update-inetd ; then
update-inetd --remove sane-port || true
update-inetd --remove "#<off># sane-port" || true
fi
@@ -54,8 +53,7 @@ if [ "$1" = purge ] ; then
#
# remove user / group
#
- pathfind deluser
- if [ $? = 0 ] ; then
+ if pathfind deluser ; then
deluser -q --group --system saned || true
deluser -q --group --system scanner || true
deluser -q --system --remove-all-files saned || true