diff options
author | Jonathan McCrohan <jmccrohan@gmail.com> | 2012-02-20 00:19:34 +0000 |
---|---|---|
committer | Jonathan McCrohan <jmccrohan@gmail.com> | 2012-02-20 00:19:34 +0000 |
commit | 9644609c9b9c3eab6e2c302359ac046e8ae591ad (patch) | |
tree | d83b5667af5c66df3447f311f49101cb2dd420cd /debian/postrm.ex | |
parent | 218f7efb7e35fc2871dfbf184fdc0f0f81f86858 (diff) | |
download | verteco-9644609c9b9c3eab6e2c302359ac046e8ae591ad.tar.gz |
dh_make initial
Diffstat (limited to 'debian/postrm.ex')
-rw-r--r-- | debian/postrm.ex | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/debian/postrm.ex b/debian/postrm.ex new file mode 100644 index 0000000..a934744 --- /dev/null +++ b/debian/postrm.ex @@ -0,0 +1,37 @@ +#!/bin/sh +# postrm script for modbuslog +# +# 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 |