File: greed.postinst

package info (click to toggle)
greed 4.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 184 kB
  • sloc: ansic: 1,114; makefile: 76; sh: 52
file content (48 lines) | stat: -rw-r--r-- 1,279 bytes parent folder | download | duplicates (5)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/sh
# postinst script for greed

set -e

case "$1" in
    configure)
        GREEDVARDIR="/var/games/greed"
        SCOREFILE="/var/games/greed/greed.hs"
        # Old score files are now incompatible
        # and the permissions and owner of the directory must be updated
	if dpkg --compare-versions "$2" lt "3.7-1"; then
            if [ -d $GREEDVARDIR ]; then
                chown root:root $GREEDVARDIR
                chmod 755 $GREEDVARDIR
            fi
	    if [ -f $SCOREFILE ]; then
		echo -n "Preserving user scores to $SCOREFILE.dpkg-old..."
		mv -f "$SCOREFILE" "$SCOREFILE".dpkg-old
                chown root:games "$SCOREFILE".dpkg-old
                chmod 664 "$SCOREFILE".dpkg-old
		echo "done."
	    fi
	fi
        if [ ! -e $SCOREFILE ]; then
            touch $SCOREFILE
        fi
        # Debian Policy 11.11
        # Set permissions, owner and group (fixes permissions of pre 3.4-2 files)
        chown root:games $SCOREFILE
        chmod 664 $SCOREFILE
    ;;

    abort-upgrade|abort-remove|abort-deconfigure)
    ;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0