blob: 2a413b4c513cc2b425a05b7728a17eb408ef88ba (
plain) (
tree)
|
|
#!/bin/sh
FILE="/var/games/greed.hs"
[ "$2" != "POST-INSTALL" -o -f "$FILE" ] && exit 0
echo "===> Creating initial high score file $FILE"
touch $FILE
chown root:games $FILE
chmod 664 $FILE
|