fa16001ef7
- Save high scores Approved by: adamw (implicit, mentor)
9 lines
172 B
Bash
9 lines
172 B
Bash
#!/bin/sh
|
|
|
|
SCOREFILE="/var/games/methanescores"
|
|
|
|
[ "$2" != "POST-INSTALL" -o -f "$SCOREFILE" ] && exit 0
|
|
|
|
touch $SCOREFILE
|
|
chown root:games $SCOREFILE
|
|
chmod 664 $SCOREFILE
|