diff options
author | Darkvater <darkvater@openttd.org> | 2007-02-27 16:51:49 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2007-02-27 16:51:49 +0000 |
commit | 285c068aae98e4a9b0fc346ed57232da13161f3e (patch) | |
tree | 27656704015d8cd84fe6e672393ffba0dc677989 /os/debian/postinst | |
parent | 8877ef7478f253a22d6f2b2a45cccc2501eb3ada (diff) | |
download | openttd-285c068aae98e4a9b0fc346ed57232da13161f3e.tar.xz |
(svn r8926) -Merge: Release changes from the 0.5 branch back to trunk. This ensures an updated changelog, readme, etc.
Diffstat (limited to 'os/debian/postinst')
-rw-r--r-- | os/debian/postinst | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/os/debian/postinst b/os/debian/postinst index 58eb04ac0..710d223d6 100644 --- a/os/debian/postinst +++ b/os/debian/postinst @@ -1,44 +1,8 @@ #! /bin/sh -# postinst script for openttd -# -# see: dh_installdeb(1) set -e -# summary of how this script can be called: -# * <postinst> `configure' <most-recently-configured-version> -# * <old-postinst> `abort-upgrade' <new version> -# * <conflictor's-postinst> `abort-remove' `in-favour' <package> -# <new-version> -# * <deconfigured's-postinst> `abort-deconfigure' `in-favour' -# <failed-install-package> <version> `removing' -# <conflicting-package> <version> -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# - . /usr/share/debconf/confmodule -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 - - |