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/postinst.ex | |
parent | 218f7efb7e35fc2871dfbf184fdc0f0f81f86858 (diff) | |
download | verteco-9644609c9b9c3eab6e2c302359ac046e8ae591ad.tar.gz |
dh_make initial
Diffstat (limited to 'debian/postinst.ex')
-rw-r--r-- | debian/postinst.ex | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/debian/postinst.ex b/debian/postinst.ex new file mode 100644 index 0000000..8bc3a16 --- /dev/null +++ b/debian/postinst.ex @@ -0,0 +1,39 @@ +#!/bin/sh +# postinst script for modbuslog +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * <postinst> `configure' <most-recently-configured-version> +# * <old-postinst> `abort-upgrade' <new version> +# * <conflictor's-postinst> `abort-remove' `in-favour' <package> +# <new-version> +# * <postinst> `abort-remove' +# * <deconfigured's-postinst> `abort-deconfigure' `in-favour' +# <failed-install-package> <version> `removing' +# <conflicting-package> <version> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + configure) + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst 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 |