- #10232: lintian provjera
[ossec-hids.git] / debian / postrm
1 #! /bin/sh
2
3 set -e
4
5 case "$1" in
6     purge)
7         # continue below
8     ;;
9
10     remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
11         exit 0
12     ;;
13
14     *)
15         echo "postrm called with unknown argument \`$1'" >&2
16         exit 1
17     ;;
18 esac
19         
20 # update system v init links
21 update-rc.d -f ossec-hids remove
22
23 # dh_installdeb will replace this with shell code automatically
24 # generated by other debhelper scripts.
25
26 #DEBHELPER#
27
28 exit 0