ef6e522406
- Take maintainership. PR: ports/115144 Submitted by: Martin Tournoij <carpetsmoker@xs4all.nl>
10 lines
192 B
Bash
10 lines
192 B
Bash
#!/bin/sh
|
|
|
|
SCOREFILE="/var/games/methanescores"
|
|
|
|
[ "$2" != "POST-INSTALL" -o -f "$SCOREFILE" ] && exit 0
|
|
|
|
mkdir -p /var/games
|
|
touch $SCOREFILE
|
|
chown root:games $SCOREFILE
|
|
chmod 664 $SCOREFILE
|