File: late.postinst

package info (click to toggle)
late 0.1.0-15
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,560 kB
  • sloc: cpp: 3,100; sh: 3,003; ansic: 164; makefile: 106
file content (35 lines) | stat: -rw-r--r-- 493 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/sh
set -e

#
#  Score file for the game.
#
scorefile="/var/games/late.scores"

#
#  The game binary itself.
#
binary="/usr/games/late"



# First install the score file might be missing.
if [ ! -e $scorefile ]
then
    install -d /var/games
    touch $scorefile
fi


# Make sure the score file has the correct permissions
chmod 0664 $scorefile
chown root:games $scorefile


# Now make the binary setgid(games).
chmod 755 $binary
chown root:games $binary
chmod g+s $binary

#DEBHELPER#