File: postinst

package info (click to toggle)
tint 0.08
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 168 kB
  • sloc: ansic: 1,048; makefile: 42; sh: 17
file content (14 lines) | stat: -rw-r--r-- 169 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e
scorefile="/var/games/tint.scores"

if [ ! -e $scorefile ]
then
	touch $scorefile
	chmod 0664 $scorefile
	chown root:games $scorefile
fi

#DEBHELPER#