cba19b1b91
field. PR: 26294 Submitted by: Mark Pulford «mark@kyne.com.au>
10 lines
194 B
Bash
10 lines
194 B
Bash
#!/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
|