postinst is in xfstt 1.9.3-3.
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 43 44 45 46 47 48 49 50 51 | #!/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/10.10.5ubuntu1
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
if [ -x "/etc/init.d/xfstt" ]; then
update-rc.d xfstt defaults >/dev/null
if [ -n "$2" ]; then
_dh_action=restart
else
_dh_action=start
fi
invoke-rc.d xfstt $_dh_action || exit $?
fi
fi
# End automatically added section
db_stop
exit 0
|