2001-04-07 07:24:31 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
FILE="/var/games/greed.hs"
|
|
|
|
[ "$2" != "POST-INSTALL" -o -f "$FILE" ] && exit 0
|
|
|
|
|
|
|
|
echo "===> Creating initial high score file $FILE"
|
|
|
|
touch $FILE
|
2002-10-21 22:37:18 +02:00
|
|
|
chown root:games $FILE
|
2001-04-07 07:24:31 +02:00
|
|
|
chmod 664 $FILE
|