postinst is in speech-dispatcher 0.8.8-1ubuntu1.
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 | #!/bin/sh
set -e
USER_NAME=speech-dispatcher
HOME_DIR=/var/run/speech-dispatcher
if ! id -u $USER_NAME >/dev/null 2>&1; then
adduser --quiet --system --ingroup audio \
--home $HOME_DIR \
--shell /bin/false --disabled-login \
--gecos 'Speech Dispatcher' $USER_NAME
chown -R $USER_NAME $HOME_DIR
elif ! test -d $HOME_DIR; then
if test -d /var/run/speechd; then
mv /var/run/speechd $HOME_DIR
else
mkdir $HOME_DIR
fi
usermod --shell /bin/false $USER_NAME
fi
if [ -d /var/log/speech-dispatcher ]; then
chown -R $USER_NAME /var/log/speech-dispatcher
fi
# Automatically added by dh_installdeb/11.1.6ubuntu1
dpkg-maintscript-helper rm_conffile /etc/speech-dispatcher/clients/gnome-speech.conf 0.8.6-2\~ speech-dispatcher -- "$@"
# End automatically added section
# Automatically added by dh_installinit/11.1.6ubuntu1
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
if [ -x "/etc/init.d/speech-dispatcher" ]; then
update-rc.d speech-dispatcher defaults >/dev/null
if [ -n "$2" ]; then
_dh_action=restart
else
_dh_action=start
fi
invoke-rc.d speech-dispatcher $_dh_action || true
fi
fi
# End automatically added section
|