diff options
| author | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2008-12-17 13:00:12 +0000 |
|---|---|---|
| committer | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2008-12-17 13:00:12 +0000 |
| commit | 78c7237b805620d0b8275377fefa9b3ba8ff1954 (patch) | |
| tree | ada1a5165863d41995360edd0b7b9764a483d717 /debian/postrm.ex | |
| parent | 46632c536288d4159d7c78cab921dc2ab2d08dc4 (diff) | |
| download | python-dmidecode-78c7237b805620d0b8275377fefa9b3ba8ff1954.tar.gz python-dmidecode-78c7237b805620d0b8275377fefa9b3ba8ff1954.tar.xz python-dmidecode-78c7237b805620d0b8275377fefa9b3ba8ff1954.zip | |
And the debian subfolder itself...
git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@111 abc39116-655e-4be6-ad55-d661dc543056
Diffstat (limited to 'debian/postrm.ex')
| -rw-r--r-- | debian/postrm.ex | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/debian/postrm.ex b/debian/postrm.ex new file mode 100644 index 0000000..e7ab81d --- /dev/null +++ b/debian/postrm.ex @@ -0,0 +1,39 @@ +#!/bin/sh +# postrm script for dmidecode +# +# 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 + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + |
