diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2013-02-13 21:27:23 +0100 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2013-02-13 21:29:12 +0100 |
commit | cf4149e0d1d70e88019d929248bdb6db0aa6c969 (patch) | |
tree | c3869ac8a9e5131737ba5017c5a6a7468e6129ee /kanotix-lxde-extra/debian/postrm | |
download | kanotix-packages-cf4149e0d1d70e88019d929248bdb6db0aa6c969.zip kanotix-packages-cf4149e0d1d70e88019d929248bdb6db0aa6c969.tar.gz |
added kanotix-lxde-extra
Diffstat (limited to 'kanotix-lxde-extra/debian/postrm')
-rw-r--r-- | kanotix-lxde-extra/debian/postrm | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/kanotix-lxde-extra/debian/postrm b/kanotix-lxde-extra/debian/postrm new file mode 100644 index 0000000..9edca9e --- /dev/null +++ b/kanotix-lxde-extra/debian/postrm @@ -0,0 +1,41 @@ +#!/bin/sh +# postrm script for kanotix-lxde-extra +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * <postrm> `remove' +# * <postrm> `purge' +# * <old-postrm> `upgrade' <new-version> +# * <new-postrm> `failed-upgrade' <old-version> +# * <new-postrm> `abort-install' +# * <new-postrm> `abort-install' <old-version> +# * <new-postrm> `abort-upgrade' <old-version> +# * <disappearer's-postrm> `disappear' <overwriter> +# <overwriter-version> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +if [ remove = "$1" -o purge = "$1" ]; then + dpkg-divert --package kanotix-lxde-extra --remove --rename \ + --divert /usr/share/lxde/images/logout-banner.png.real /usr/share/lxde/images/logout-banner.png +fi +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 |