#! /bin/sh
set -e

# Remove ban file and reload firewall
if [ "$1" = "remove" ] ; then
  rm -f /etc/firewall/rules.d/10-autoban.rule
  if invoke-rc.d firewall status > /dev/null 2>&1 ; then
    firewall
  fi

fi

#DEBHELPER#
