diff options
author | k clair <kclair@riseup.net> | 2012-10-09 12:55:01 -0700 |
---|---|---|
committer | k clair <kclair@riseup.net> | 2012-10-09 12:55:01 -0700 |
commit | deeb9c4852c699ad26a5d81cdf13176cb6c2e114 (patch) | |
tree | e77c87015b276f80f9d727ffeb7e9904adc74dbd /ping-0.2/debian/postinst.ex | |
parent | e7f841ebffe2a1631a3bd8056b2aa2182184fc8a (diff) |
add previously generated debian packaging files
Diffstat (limited to 'ping-0.2/debian/postinst.ex')
-rw-r--r-- | ping-0.2/debian/postinst.ex | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/ping-0.2/debian/postinst.ex b/ping-0.2/debian/postinst.ex new file mode 100644 index 0000000..3bcfde3 --- /dev/null +++ b/ping-0.2/debian/postinst.ex @@ -0,0 +1,39 @@ +#!/bin/sh +# postinst script for python-ping +# +# 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 |