#! /bin/sh # postinst script for fail2ban # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package # preversion=$2 case "$1" in configure) # To fix the bug in generated by previous version files permissions # also closes #352053 LOG=/var/log/fail2ban.log touch $LOG chown root:adm ${LOG}* chmod 640 ${LOG}* # Note regarding changed configuration file # Note regarding changed configuration file if [ ! -z $preversion ]; then if dpkg --compare-versions $preversion lt 0.7.1-1; then cat <&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. # Automatically added by dh_pycentral rm -f /var/lib/pycentral/fail2ban.pkgremove if which pycentral >/dev/null 2>&1; then pycentral pkginstall fail2ban if grep -qs '^fail2ban$' /var/lib/pycentral/delayed-pkgs; then sed -i '/^fail2ban$/d' /var/lib/pycentral/delayed-pkgs fi fi # End automatically added section # Automatically added by dh_installinit if [ -x "/etc/init.d/fail2ban" ]; then update-rc.d fail2ban defaults 99 >/dev/null invoke-rc.d fail2ban start || exit $? fi # End automatically added section exit 0