X-Git-Url: http://git.maemo.org/git/?p=confmgr;a=blobdiff_plain;f=debian%2Fpostinst.ex;fp=debian%2Fpostinst.ex;h=727537db7a2fec32c63c14c1400834f43710f193;hp=0000000000000000000000000000000000000000;hb=6f0e06a23515e795b75e08161487d60c9fc4f933;hpb=8cdf509abbdb8654def1e0df79e1f607e9a41807;ds=sidebyside diff --git a/debian/postinst.ex b/debian/postinst.ex new file mode 100644 index 0000000..727537d --- /dev/null +++ b/debian/postinst.ex @@ -0,0 +1,41 @@ +#!/bin/sh +# postinst script for confmgr +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-remove' +# * `abort-deconfigure' `in-favour' +# `removing' +# +# 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 + +