#!/bin/sh -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
	/bin/touch $scorefile
fi


# Make sure the score file has the correct permissions
/bin/chmod 0664 $scorefile
/bin/chown root:games $scorefile


# Now make the binary setgid(games).
/bin/chmod 755 $binary
/bin/chown root:games $binary
/bin/chmod g+s $binary

#DEBHELPER#

