mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
de70808b3b
PR: 48515 Submitted by: Akihiro IIJIMA <aki@bsdclub.org> Approved by: markp (MAINTAINER)
10 lines
202 B
Bash
10 lines
202 B
Bash
#!/bin/sh
|
|
|
|
FILE="/var/games/nighthawk.scores"
|
|
[ "$2" != "POST-INSTALL" -o -f "$FILE" ] && exit 0
|
|
|
|
echo "===> Creating initial high score file $FILE"
|
|
touch $FILE
|
|
chown root:games $FILE
|
|
chmod 664 $FILE
|