2001-04-07 07:51:42 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
FILE="/var/games/xrot.scores"
|
|
|
|
[ "$2" != "POST-INSTALL" -o -f "$FILE" ] && exit 0
|
|
|
|
|
|
|
|
echo "===> Creating initial high score file $FILE"
|
|
|
|
touch $FILE
|
2002-10-22 00:33:39 +02:00
|
|
|
chown root:games $FILE
|
2001-04-07 07:51:42 +02:00
|
|
|
chmod 664 $FILE
|