postrm is in festival 1:2.1~release-6ubuntu1.
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 | #!/bin/sh
set -e
rm -f /etc/init.d/festival
if [ "$1" = "purge" ];then
rm -rf /var/log/festival
rm -f /etc/festival.scm
fi
# Automatically added by dh_installcatalogs
if [ "$1" = "purge" ]; then
rm -f /etc/sgml/festival.cat.old
fi
# End automatically added section
|