X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=debian%2Fpostinst.ex;fp=debian%2Fpostinst.ex;h=3e323b0588042bddaec9f141cc64cfb3a4c4ecdf;hb=cb85bf259ec95aa4be7ae4d91b95316728e35128;hp=0000000000000000000000000000000000000000;hpb=29ee321dc7c88a87b2feeee80a752057816cb6e9;p=roobuilder diff --git a/debian/postinst.ex b/debian/postinst.ex new file mode 100644 index 000000000..3e323b058 --- /dev/null +++ b/debian/postinst.ex @@ -0,0 +1,39 @@ +#!/bin/sh +# postinst script for roobuilder. +# +# 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 https://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