2001-03-30 04:48:10 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
FILE="/var/games/lexter.scores"
|
|
|
|
[ "$2" != "POST-INSTALL" -o -f "$FILE" ] && exit 0
|
|
|
|
|
|
|
|
echo "===> Creating initial high score file $FILE"
|
|
|
|
touch $FILE
|
2003-02-23 17:25:49 +01:00
|
|
|
chown root:games $FILE
|
2001-03-30 04:48:10 +02:00
|
|
|
chmod 664 $FILE
|