File: tpm-udev.postinst

package info (click to toggle)
tpm-udev 0.5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 48 kB
  • sloc: sh: 29; makefile: 2
file content (43 lines) | stat: -rw-r--r-- 1,085 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

set -e

case "$1" in
    configure)
	# creating tss group if he isn't already there
	if ! getent group tss >/dev/null; then
            addgroup --system tss
	fi

	# creating tss user if he isn't already there
	if ! getent passwd tss >/dev/null; then
            adduser --system --ingroup tss --shell /bin/false \
                    --home /var/lib/tpm --no-create-home \
                    --gecos "TPM software stack" \
                    tss
	fi

	# Setting owner
	if [ -d /var/lib/tpm ] && getent passwd tss >/dev/null; then
	    chown tss:tss /var/lib/tpm
	fi

	# ask udev to check for new udev rules (and fix device permissions)
	if udevadm --version > /dev/null; then
	    udevadm control --reload-rules ||:
	    udevadm trigger --sysname-match="tpm[0-9]*" ||:
	    udevadm trigger --action=add --subsystem-match=tpm ||:
	    udevadm trigger --action=add --subsystem-match=tpmrm ||:
	fi
    ;;

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

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

#DEBHELPER#