X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=debian%2Fpostrm;fp=debian%2Fpostrm;h=1bfe652e7571de3d91e8d567b77b0458a0ca8850;hb=a9d8b62e90340f2747aac14ec75e609eb97253d6;hp=0000000000000000000000000000000000000000;hpb=e7cbfe3bfbbadbdcf2d915df2a68ff17fba9eba1;p=fail2ban-cn.git diff --git a/debian/postrm b/debian/postrm new file mode 100755 index 0000000..1bfe652 --- /dev/null +++ b/debian/postrm @@ -0,0 +1,51 @@ +#!/bin/sh +# postrm script for monit-cn +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' overwrit>r> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +case "$1" in + purge) + # continue below + ;; + + *) + exit 0 + ;; +esac + +# import CN-functions +. /usr/share/carnet-tools/functions.sh + +CONF=/etc/fail2ban/jail.conf + +# remove us from inittab +echo "CN: Removing Dovecot support" +cp-update -r fail2ban-cn "$CONF" + +# restart the services +if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then + invoke-rc.d fail2ban restart || exit $? +else + /etc/init.d/fail2ban restart || exit $? +fi + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0