X-Git-Url: http://git.maemo.org/git/?p=gconf-editor;a=blobdiff_plain;f=debian%2Fpostinst.ex;fp=debian%2Fpostinst.ex;h=284077e91ee9a169cb01ad82b4a59cc71615c7d1;hp=0000000000000000000000000000000000000000;hb=1c15361830c14d128a02be200ee2780e3a9113e7;hpb=34f89e89320f83ec38ebf7257ddfe4d4a84b7cf0 diff --git a/debian/postinst.ex b/debian/postinst.ex new file mode 100644 index 0000000..284077e --- /dev/null +++ b/debian/postinst.ex @@ -0,0 +1,41 @@ +#!/bin/sh +# postinst script for gconf-editor +# +# 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 + +