2005-04-24 17:45:35 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
SCOREFILE="/var/games/methanescores"
|
|
|
|
|
|
|
|
[ "$2" != "POST-INSTALL" -o -f "$SCOREFILE" ] && exit 0
|
|
|
|
|
2007-09-14 06:01:51 +02:00
|
|
|
mkdir -p /var/games
|
2005-04-24 17:45:35 +02:00
|
|
|
touch $SCOREFILE
|
|
|
|
chown root:games $SCOREFILE
|
|
|
|
chmod 664 $SCOREFILE
|