diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-05-01 08:20:59 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-05-01 08:20:59 +0200 |
commit | 270bd9e6c2b311e2f44c6001e70cbd263362d761 (patch) | |
tree | f11a3ca814e48f5882f7e82224b8998aaa56596d /debian/sane-utils.postrm | |
parent | ae48d107ecbd90f0e19c50fed4c742fec59b020c (diff) |
Debian bug #783822
Diffstat (limited to 'debian/sane-utils.postrm')
-rw-r--r-- | debian/sane-utils.postrm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/debian/sane-utils.postrm b/debian/sane-utils.postrm index f1a0d79..e7af639 100644 --- a/debian/sane-utils.postrm +++ b/debian/sane-utils.postrm @@ -1,6 +1,10 @@ #!/bin/sh -#set -e +# set -e +# +# set -e are disabled because pathfind update-inetd +# gives an piuparts error. +# # # POSIX-compliant shell function @@ -21,12 +25,13 @@ pathfind() { } -if [ "$1" = purge ]; then +if [ "$1" = purge ] ; then pathfind update-inetd - if [ $? = 0 ]; then + if [ $? = 0 ] ; then update-inetd --remove sane-port update-inetd --remove "#<off># sane-port" fi + # # purge systemd files # |