File: postinst

package info (click to toggle)
geki3 1.0.3-8.1
  • links: PTS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 2,628 kB
  • ctags: 303
  • sloc: ansic: 2,537; sh: 377; makefile: 86
file content (43 lines) | stat: -rw-r--r-- 941 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
36
37
38
39
40
41
42
43
#! /bin/sh

PROG=/usr/games/geki3

case "$1" in
  configure)
    # Cancel my old stupid use of dpkg-statoverride
    if [ "$1" = "configure" ] && [ "$2" != "" ] &&
          dpkg --compare-versions "$2" le "1.0.3-4" &&
          dpkg-statoverride --list "$PROG" >/dev/null
    then
        dpkg-statoverride --remove "$PROG"
    fi

    # Properly use statoverride
    if ! dpkg-statoverride --list "$PROG" >/dev/null ; then
      chown root:games "$PROG"
      chmod 2755 "$PROG"
    fi

    if ! test -f /var/games/geki3.scores; then
      cat >/var/games/geki3.scores <<EOF
10000
10000 1 0 anonymous
9000 1 0 anonymous
8000 1 0 anonymous
7000 1 0 anonymous
3000 0 0 anonymous
EOF
      chown root:games /var/games/geki3.scores
      chmod 0664 /var/games/geki3.scores
    fi
    ;;
  abort-upgrade|abort-remove|abort-deconfigure)
    ;;
  *)
    echo "postinst called with unknown argument \`$1'" >&2
    exit 1
    ;;
esac

#DEBHELPER#