obrisane nepotrebne datoteke od zadnjeg builda
[ossec-hids.git] / debian / prerm
1 #!/bin/sh
2
3 set -e
4
5 case "$1" in
6     purge|remove)
7       # continue below
8     ;;
9
10     *)
11         exit 0
12     ;;
13 esac
14
15 # stop the service
16 service ossec-hids stop
17
18 # dh_installdeb will replace this with shell code automatically
19 # generated by other debhelper scripts.
20
21 #DEBHELPER#
22
23 exit 0