postinst is in linuxlogo 5.11-9.
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 | #!/bin/sh
set -e
for FILE in /etc/issue.linuxlogo /etc/issue.linuxlogo.ascii
do
if [ ! -L "${FILE}" ]
then
if [ -e "${FILE}" ]
then
mv -f "${FILE}" /var/run/linuxlogo/"$(basename ${FILE})"
fi
ln -sf /var/run/linuxlogo/"$(basename ${FILE})" "${FILE}"
fi
done
case "${1}" in
configure)
rm -f /usr/bin/linux_logo_wait
if [ -x "$(which invoke-rc.d)" ]
then
invoke-rc.d linuxlogo restart || exit ${?}
else
/etc/init.d/linuxlogo restart || exit ${?}
fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`${1}'" >&2
exit 1
;;
esac
# Automatically added by dh_installinit
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
if [ -x "/etc/init.d/linuxlogo" ]; then
update-rc.d linuxlogo defaults >/dev/null
invoke-rc.d linuxlogo start || exit $?
fi
fi
# End automatically added section
# Automatically added by dh_installmenu
if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
update-menus
fi
# End automatically added section
exit 0
|