#! /bin/sh # postrm script for libreswan # # see: dh_installdeb(1) set -e test $DEBIAN_SCRIPT_DEBUG && set -v -x # 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/share/doc/packaging-manual/ case "$1" in purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 0 esac if [ "$1" = "purge" ] ; then update-rc.d ipsec remove >/dev/null rm -rf /etc/ipsec.d/ rm -rf /var/lib/libreswan/ rm -rf /var/run/pluto/ if [ -e /usr/share/debconf/confmodule ]; then # Source debconf library. . /usr/share/debconf/confmodule # Remove my changes to the db. db_purge fi fi # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER#