File indexing completed on 2024-05-12 05:39:33

0001 #!/bin/sh
0002 # postinst script for rolisteam
0003 #
0004 # see: dh_installdeb(1)
0005 
0006 set -e
0007 
0008 # summary of how this script can be called:
0009 #        * <postinst> `configure' <most-recently-configured-version>
0010 #        * <old-postinst> `abort-upgrade' <new version>
0011 #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
0012 #          <new-version>
0013 #        * <postinst> `abort-remove'
0014 #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
0015 #          <failed-install-package> <version> `removing'
0016 #          <conflicting-package> <version>
0017 # for details, see http://www.debian.org/doc/debian-policy/ or
0018 # the debian-policy package
0019 
0020 
0021 case "$1" in
0022     configure)
0023     ;;
0024 
0025     abort-upgrade|abort-remove|abort-deconfigure)
0026     ;;
0027 
0028     *)
0029         echo "postinst called with unknown argument \`$1'" >&2
0030         exit 1
0031     ;;
0032 esac
0033 
0034 # dh_installdeb will replace this with shell code automatically
0035 # generated by other debhelper scripts.
0036 
0037 #DEBHELPER#
0038 
0039 exit 0