postinst is in festival 1:2.1~release-1ubuntu2.
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 | #!/bin/sh
set -e
# Remove shutdown and reboot links; this init script does not need them.
if dpkg --compare-versions "$2" lt "1.4.3-18"; then
rm -f /etc/rc0.d/K20festival /etc/rc6.d/K20festival
fi
# Create festival user if it doesn't already exist.
if ! getent passwd festival >/dev/null; then
adduser festival --quiet --system --ingroup audio --no-create-home
fi
# Automatically added by dh_installcatalogs
if [ "$1" = "configure" ]; then
rm -f /etc/sgml/festival.cat
for ordcat in /usr/share/sgml/festival/catalog; do
update-catalog --quiet --add /etc/sgml/festival.cat ${ordcat}
done
update-catalog --quiet --add --super /etc/sgml/festival.cat
fi
# End automatically added section
|