diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2012-06-26 16:35:14 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-06-26 16:35:14 -0300 |
commit | 80dbf12dad7500caf6fb6336a68812f28e147f8f (patch) | |
tree | 1c7eeee16684af445b58830fca32f4f923530058 /debian/postinst.ex | |
parent | 80056e1a52b9528701fb265f880c819dc92641aa (diff) | |
download | keyringer-aec784d0f74226378d770f914d3136057940d6bf.tar.gz keyringer-aec784d0f74226378d770f914d3136057940d6bf.tar.bz2 |
More debian specifics from dh_makedebian_keyringer_0.1-1
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..4c62489 --- /dev/null +++ b/debian/postinst.ex @@ -0,0 +1,39 @@ +#!/bin/sh +# postinst script for keyringer +# +# 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 |