#! /bin/sh # # see: dh_installdeb(1) # # Copyright (C) 2007 Mario Limonciello # Copyright (C) 2009-2011 Canonical Ltd. 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/share/doc/packaging-manual/ PKGNAME=#DRIVERNAME# case "$1" in remove|purge) if [ "$1" = "purge" ]; then rm -Rf /#PKGLIBDIR# else # This will preserve the etc directory rm -f /#PKGLIBDIR#/* 2>/dev/null || true fi ;; 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#