1fc6676348
PR: 40590 Submitted by: verm@drunkmonk.net
8 lines
214 B
Bash
8 lines
214 B
Bash
#!/bin/sh
|
|
|
|
FILE=/var/games/marbles.prfs
|
|
[ "$2" != "POST-INSTALL" -o -f "$FILE" ] && exit 0
|
|
|
|
echo "===> Creating initial profile $FILE"
|
|
install -o root -g games -m 664 ${PKG_PREFIX}/share/marbles/empty.prfs $FILE
|