File: scanbd.postrm

package info (click to toggle)
scanbd 1.5.1-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 4,880 kB
  • sloc: sh: 11,695; ansic: 7,836; makefile: 257
file content (25 lines) | stat: -rw-r--r-- 468 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#! /bin/sh
# postrm script for scanbd

set -e

case "$1" in
    purge)
      find /etc/scanbd -maxdepth 1 -type l -name *.conf -delete
      rm -f /etc/scanbd/dll.conf
      if which update-inetd >/dev/null; then
        update-inetd --remove 'sane-port'
      fi
    ;;
    remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
    ;;

    *)
        echo "postrm called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

#DEBHELPER#

exit 0