postinst is in sgml-base 1.26+nmu1ubuntu1.
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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | #!/bin/sh
## ----------------------------------------------------------------------
## debian/postinst : postinstallation script for sgml-base
## ----------------------------------------------------------------------
## ----------------------------------------------------------------------
set -e
## ----------------------------------------------------------------------
if [ "$1" = "configure" ]
then
## ------------------------------------------------------------------
## create SGML root catalog
[ ! -f /etc/sgml/catalog ] \
&& cp -a /usr/share/sgml-base/catalog.super /etc/sgml/catalog
## ------------------------------------------------------------------
## clean up /usr/lib/sgml
if [ -d /usr/lib/sgml ]
then
## --------------------------------------------------------------
## remove nasty old circular catalog
update-catalog --remove --super /usr/lib/sgml/catalog || true
## --------------------------------------------------------------
## remove symlink to /etc/sgml/catalog
rm -f /usr/lib/sgml/catalog
## --------------------------------------------------------------
## move transitional SGML catalog to /etc/sgml
TRANSCAT=transitional.cat
if [ -f /usr/lib/sgml/${TRANSCAT} ]
then
update-catalog --remove --super /usr/lib/sgml/${TRANSCAT} || true
mv -f /usr/lib/sgml/${TRANSCAT} /etc/sgml/${TRANSCAT}
if [ -f /usr/lib/sgml/${TRANSCAT}.old ]
then
mv -f /usr/lib/sgml/${TRANSCAT}.old /etc/sgml/${TRANSCAT}.old
fi
fi
## --------------------------------------------------------------
## remove /usr/lib/sgml
cd /usr/lib
rmdir --ignore-fail-on-non-empty sgml
cd - >/dev/null
fi
## ------------------------------------------------------------------
## evolve legacy /etc/sgml.catalog
OCATALOG=/etc/sgml.catalog
if [ -f ${OCATALOG} ]
then
TRANSCAT=/etc/sgml/transitional.cat
if [ -f ${TRANSCAT} ]
then
cp ${TRANSCAT} ${TRANSCAT}.old
else
cp /usr/share/sgml-base/transitional.cat ${TRANSCAT}
fi
sed -e '1,10d' <${OCATALOG} >>${TRANSCAT}
rm -f ${OCATALOG}
if [ -f ${OCATALOG}.old ]
then
sed -e '1,10d' <${OCATALOG}.old >>${TRANSCAT}.old
rm -f ${OCATALOG}.old
fi
fi
## ------------------------------------------------------------------
TRANSCAT=/etc/sgml/transitional.cat
if [ -f ${TRANSCAT} ]
then
update-catalog --add --super ${TRANSCAT}
fi
fi
## ----------------------------------------------------------------------
## automatically generated debhelper commands
# Automatically added by dh_usrlocal
if [ "$1" = configure ]; then
(
while read line; do
set -- $line
dir="$1"; mode="$2"; user="$3"; group="$4"
if [ ! -e "$dir" ]; then
if mkdir "$dir" 2>/dev/null; then
chown "$user":"$group" "$dir"
chmod "$mode" "$dir"
fi
fi
done
) << DATA
/usr/local/share 2775 root staff
/usr/local/share/sgml 2775 root staff
/usr/local/share/sgml/stylesheet 2775 root staff
/usr/local/share/sgml/misc 2775 root staff
/usr/local/share/sgml/entities 2775 root staff
/usr/local/share/sgml/dtd 2775 root staff
/usr/local/share/sgml/declaration 2775 root staff
DATA
fi
# End automatically added section
exit 0
## ----------------------------------------------------------------------
|