X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;ds=sidebyside;f=debian%2Fossec-hids%2FDEBIAN%2Fprerm;fp=debian%2Fossec-hids%2FDEBIAN%2Fprerm;h=b17094709dd384b5d90956f7aaf04ee99ae26873;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hp=0000000000000000000000000000000000000000;hpb=927951d1c1ad45ba9e7325f07d996154a91c911b;p=ossec-hids.git diff --git a/debian/ossec-hids/DEBIAN/prerm b/debian/ossec-hids/DEBIAN/prerm new file mode 100755 index 0000000..b170947 --- /dev/null +++ b/debian/ossec-hids/DEBIAN/prerm @@ -0,0 +1,23 @@ +#!/bin/sh + +set -e + +case "$1" in + purge|remove) + # continue below + ;; + + *) + exit 0 + ;; +esac + +# stop the service +service ossec-hids stop + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + + + +exit 0