postinst is in slashem-common 0.0.7E7F3-6.
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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | #!/bin/sh
# post-install script for Debian Slash'EM
#
# Peter Makholm (peter@makholm.net) 19991103
# This script is released under GPLv2 or later
#
set -e
. /usr/share/debconf/confmodule
if [ -d /var/lib/games/slashem ] ; then
if [ -d /var/games/slashem ] ; then
echo "Warning:";
echo "Only /var/games/slashem/ should exist but /var/lib/games/slashem also";
echo "exists. Please fix it.";
else
echo -n "Moving /var/lib/games/slashem to /var/games/slashem... "
mv /var/lib/games/slashem /var/games/slashem;
echo "done."
fi
fi
# Make needed directories
if [ ! -d /var/games/slashem ] ; then
mkdir -p /var/games/slashem
fi
chown root:games /var/games/slashem
chmod 0775 /var/games/slashem
if [ ! -d /var/games/slashem/save ] ; then
mkdir /var/games/slashem/save
fi
chown root:games /var/games/slashem/save
chmod 0775 /var/games/slashem/save
# Make needed files
touch /var/games/slashem/perm
chown root:games /var/games/slashem/perm
chmod 0664 /var/games/slashem/perm
touch /var/games/slashem/record
chown root:games /var/games/slashem/record
chmod 0664 /var/games/slashem/record
touch /var/games/slashem/logfile
chown root:games /var/games/slashem/logfile
chmod 0664 /var/games/slashem/logfile
# Automatically added by dh_installinit
if [ -x "/etc/init.d/slashem-common" ]; then
if [ ! -e "/etc/init/slashem-common.conf" ]; then
update-rc.d slashem-common start 80 S . >/dev/null
fi
invoke-rc.d slashem-common start || exit $?
fi
# End automatically added section
|