X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=debian%2Fpostinst.ex;fp=debian%2Fpostinst.ex;h=498bd5cdb023c2aace63b4c6a7ab4c3ac15b0e9d;hb=628bad8b55a4fde9ffd5c3f09064913d9fd59fc6;hp=0000000000000000000000000000000000000000;hpb=8a25a2ac02ae1aa4278f31fb182eb66186f49a9c;p=rfk diff --git a/debian/postinst.ex b/debian/postinst.ex new file mode 100644 index 0000000..498bd5c --- /dev/null +++ b/debian/postinst.ex @@ -0,0 +1,41 @@ +#!/bin/sh +# postinst script for rfk +# +# 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 + +