postinst is in openjade1.3 1.3.2-11ubuntu1.
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 | #!/bin/sh
set -e
update-alternatives --install /usr/bin/openjade openjade /usr/bin/openjade1.3 103 \
--slave /usr/share/man/man1/openjade.1.gz openjade.1.gz /usr/share/man/man1/openjade1.3.1.gz
# Automatically added by dh_installcatalogs
if [ "$1" = "configure" ]; then
rm -f /etc/sgml/openjade1.3.cat
for ordcat in /usr/share/sgml/openjade1.3/catalog; do
update-catalog --quiet --add /etc/sgml/openjade1.3.cat ${ordcat}
done
update-catalog --quiet --add --super /etc/sgml/openjade1.3.cat
fi
# End automatically added section
|