File: postinst

package info (click to toggle)
freesweep 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 628 kB
  • sloc: ansic: 5,173; sh: 2,180; makefile: 204
file content (16 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/sh
# postinst script for freesweep

set -e

scores=/var/games/sweeptimes
if [ ! -e $scores ] ; then
  touch $scores
  chown root:games $scores
  chmod 0664 $scores
fi

#DEBHELPER#

exit 0