This file is indexed.

postinst is in libtss2-utils 0.98+20160226.d4f23cc-0ubuntu2.

This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#!/bin/sh
set -e
# Automatically added by dh_installinit
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
	if [ -x "/etc/init.d/tpm2-resourcemgr" ]; then
		update-rc.d tpm2-resourcemgr defaults >/dev/null
	fi
	if [ -x "/etc/init.d/tpm2-resourcemgr" ] || [ -e "/etc/init/tpm2-resourcemgr.conf" ]; then
		invoke-rc.d tpm2-resourcemgr start || exit $?
	fi
fi
# End automatically added section
# Automatically added by dh_systemd_start
if [ -d /run/systemd/system ]; then
	systemctl --system daemon-reload >/dev/null || true
	deb-systemd-invoke start tpm2-resourcemgr.service >/dev/null || true
fi
# End automatically added section