From 0321fd46899c7ab3d440d81ffcd474467efc6acf Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Sun, 5 Mar 2006 19:51:01 +0000 Subject: [PATCH] added postrm script to clean up the log files --- debian/changelog | 6 ++++-- debian/postrm | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 2 deletions(-) create mode 100755 debian/postrm diff --git a/debian/changelog b/debian/changelog index d933da2d..898fa995 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,8 +5,10 @@ fail2ban (0.6.0-6) unstable; urgency=low of openssh server * Included regexps for SSH in case iff authentication as root using keys was attempted whenever PermitRootLogin is set to something else than "yes" and - key authentication fails. - + key authentication fails + * Included postrm script to remove log files during purge to comply with + policy 10.8 (closes: #355443) + -- Yaroslav Halchenko Fri, 3 Mar 2006 16:32:38 -0500 fail2ban (0.6.0-5) unstable; urgency=low diff --git a/debian/postrm b/debian/postrm new file mode 100755 index 00000000..1e6c5ccd --- /dev/null +++ b/debian/postrm @@ -0,0 +1,42 @@ +#! /bin/sh +# postrm script for fail2ban +# +# 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 /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# + +