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
|
#!/bin/sh
set -e
#
# Score file for the game.
#
scorefile="/var/games/late.scores"
#
# The game binary itself.
#
binary="/usr/games/late"
# First install the score file might be missing.
if [ ! -e $scorefile ]
then
install -d /var/games
touch $scorefile
fi
# Make sure the score file has the correct permissions
chmod 0664 $scorefile
chown root:games $scorefile
# Now make the binary setgid(games).
chmod 755 $binary
chown root:games $binary
chmod g+s $binary
#DEBHELPER#
|