postinst is in geki3 1.0.3-8.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | #! /bin/sh
PROG=/usr/games/geki3
case "$1" in
configure)
# Cancel my old stupid use of dpkg-statoverride
if [ "$1" = "configure" ] && [ "$2" != "" ] &&
dpkg --compare-versions "$2" le "1.0.3-4" &&
dpkg-statoverride --list "$PROG" >/dev/null
then
dpkg-statoverride --remove "$PROG"
fi
# Properly use statoverride
if ! dpkg-statoverride --list "$PROG" >/dev/null ; then
chown root:games "$PROG"
chmod 2755 "$PROG"
fi
if ! test -f /var/games/geki3.scores; then
cat >/var/games/geki3.scores <<EOF
10000
10000 1 0 anonymous
9000 1 0 anonymous
8000 1 0 anonymous
7000 1 0 anonymous
3000 0 0 anonymous
EOF
chown root:games /var/games/geki3.scores
chmod 0664 /var/games/geki3.scores
fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
# Automatically added by dh_installmenu
if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
update-menus
fi
# End automatically added section
|