mirror of https://github.com/fail2ban/fail2ban
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.0 KiB
43 lines
1.0 KiB
#! /bin/sh
|
|
# postrm script for fail2ban
|
|
#
|
|
# see: dh_installdeb(1)
|
|
|
|
set -e
|
|
|
|
# summary of how this script can be called:
|
|
# * <postrm> `remove'
|
|
# * <postrm> `purge'
|
|
# * <old-postrm> `upgrade' <new-version>
|
|
# * <new-postrm> `failed-upgrade' <old-version>
|
|
# * <new-postrm> `abort-install'
|
|
# * <new-postrm> `abort-install' <old-version>
|
|
# * <new-postrm> `abort-upgrade' <old-version>
|
|
# * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
|
|
# for details, see /usr/doc/packaging-manual/
|
|
|
|
|
|
case "$1" in
|
|
purge|disappear)
|
|
|
|
# Remove configuration
|
|
rm -f /etc/fail2ban.conf
|
|
|
|
# Remove logs
|
|
rm -f /var/log/fail2ban*
|
|
|
|
;;
|
|
remove|upgrade|failed-upgrade|abort-install|abort-upgrade)
|
|
# nothing
|
|
# We may not delete the user fail2ban, as there may be
|
|
# files owned by it in /var/log/ and /etc/.
|
|
;;
|
|
esac
|
|
|
|
# dh_installdeb will replace this with shell code automatically
|
|
# generated by other debhelper scripts.
|
|
|
|
#DEBHELPER#
|
|
|
|
|