File: postinst

package info (click to toggle)
gophernicus 3.1.1-3.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 492 kB
  • sloc: ansic: 2,326; sh: 718; makefile: 173
file content (32 lines) | stat: -rw-r--r-- 828 bytes parent folder | download | duplicates (2)
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
#!/bin/sh

set -e

case "$1" in
    configure)
        id -g _gophernicus > /dev/null 2>&1 || \
            addgroup --system --force-badname _gophernicus
	id _gophernicus > /dev/null 2>&1 || \
            adduser --system --home /nonexistent \
                    --no-create-home --disabled-password \
                    --gecos "gophernicus daemon" \
                    --force-badname \
                    --ingroup _gophernicus _gophernicus
	if command -v update-inetd > /dev/null; then
	    update-inetd --group STANDARD --add \
		"#<off># gopher\tstream\ttcp\tnowait\t_gophernicus\t/usr/sbin/gophernicus\tgophernicus"
	fi
    ;;

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

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

#DEBHELPER#

exit 0