diff -r 6688cf392e61 -r cf5213c8a919 os/debian/postinst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/debian/postinst Sat Sep 18 16:29:12 2004 +0000 @@ -0,0 +1,45 @@ +#! /bin/sh +# postinst script for openttd +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package +# + +case "$1" in + configure) + cat <&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + +