This file is indexed.

postinst is in xfstt 1.8-2.

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
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/sh
set -e

. /usr/share/debconf/confmodule

CONFIGFILE=/etc/default/xfstt

if [ "$1" = configure ]; then
	db_get xfstt/listen_tcp || true

	case "$RET" in
	true)	RET=yes
		;;
	false)	RET=no
		;;
	esac

	if [ -e $CONFIGFILE ]; then
		sed -e "s/^ *LISTEN_TCP=.*/LISTEN_TCP=\"$RET\"/" \
			< $CONFIGFILE > $CONFIGFILE.tmp
		mv -f $CONFIGFILE.tmp $CONFIGFILE
	else
		(
		echo "# Defaults for xfstt init.d script"
		echo "#"
		echo "# Valid values are: yes no"
		echo "LISTEN_TCP=\"$RET\""
		) > $CONFIGFILE
	fi
fi

# Automatically added by dh_installinit
if [ -x "/etc/init.d/xfstt" ]; then
	update-rc.d xfstt defaults >/dev/null
	invoke-rc.d xfstt start || exit $?
fi
# End automatically added section


db_stop

exit 0