X-Git-Url: http://git.maemo.org/git/?p=tpathy-callback;a=blobdiff_plain;f=debian%2Fpostinst.ex;fp=debian%2Fpostinst.ex;h=ef5a1a26ef33f47204d538bbe78b2a60e399bcfe;hp=0000000000000000000000000000000000000000;hb=527c14194dc954788dcb48e0e2a31c1690dbc266;hpb=d93f068e800533935e7dc5f283bd9399c9da6e68 diff --git a/debian/postinst.ex b/debian/postinst.ex new file mode 100644 index 0000000..ef5a1a2 --- /dev/null +++ b/debian/postinst.ex @@ -0,0 +1,41 @@ +#!/bin/sh +# postinst script for telepathy-callback +# +# 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 + +