X-Git-Url: https://git.piment-noir.org/?p=deb_libhybris.git;a=blobdiff_plain;f=debian%2Flibhybris.postrm.in;fp=debian%2Flibhybris.postrm.in;h=f975b6fd87183c9540dbed13e408e52d7aac3513;hp=0000000000000000000000000000000000000000;hb=4395b8c4430d414035c345cf4c757204b39ac993;hpb=d42e7319e80e2f113a97047d135e749e50348b4f diff --git a/debian/libhybris.postrm.in b/debian/libhybris.postrm.in new file mode 100644 index 0000000..f975b6f --- /dev/null +++ b/debian/libhybris.postrm.in @@ -0,0 +1,47 @@ +#! /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#