Izmjene za stretch
[ossec-hids-cn.git] / debian / postrm
1 #!/bin/sh
2 # postrm script for bind9-cn
3 #
4 # see: dh_installdeb(1)
5
6 set -e
7
8 # summary of how this script can be called:
9 #        * <postrm> `remove'
10 #        * <postrm> `purge'
11 #        * <old-postrm> `upgrade' <new-version>
12 #        * <new-postrm> `failed-upgrade' <old-version>
13 #        * <new-postrm> `abort-install'
14 #        * <new-postrm> `abort-install' <old-version>
15 #        * <new-postrm> `abort-upgrade' <old-version>
16 #        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
17 # for details, see http://www.debian.org/doc/debian-policy/ or
18 # the debian-policy package
19
20 case "$1" in
21     purge)
22       # continue below
23     ;;
24
25     *)
26         exit 0
27     ;;
28 esac
29
30 # import CN-functions
31 . /usr/share/carnet-tools/functions.sh
32
33 # get installation directory
34 if [ -e /etc/ossec-init.conf ]; then
35   . /etc/ossec-init.conf
36 fi
37 if [ "X${DIRECTORY}" = "X" ]; then
38     DIRECTORY="/var/ossec"
39 fi
40
41 # remove our block
42 local_rules="$DIRECTORY/rules/local_rules.xml"
43 if [ -e "$local_rules" ]; then
44     cp-update --comment '<!--' --comment-end '-->' \
45         -r ossec-hids-cn "$local_rules"
46 fi
47
48 # and start the service
49 service ossec-hids restart || true
50
51 # dh_installdeb will replace this with shell code automatically
52 # generated by other debhelper scripts.
53
54 #DEBHELPER#
55
56 exit 0