#! /bin/sh # postrm script for bftpd # # 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|remove) rm -f /etc/rc0.d/K20bftpd rm -f /etc/rc1.d/K20bftpd rm -f /etc/rc2.d/S20bftpd rm -f /etc/rc3.d/S20bftpd rm -f /etc/rc4.d/S20bftpd rm -f /etc/rc5.d/S20bftpd rm -f /etc/rc6.d/K20bftpd ;; upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 0 esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER#