postinst is in seyon 2.20c-32build1.
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 | #!/bin/sh
set -e
case "$1" in
abort-upgrade|abort-remove|abort-deconfigure)
exit 0;; # Don't prompt for configuration if something went wrong...
esac
EMU=/etc/X11/seyon/seyon-emu
COLORDEFAULTS=/etc/X11/seyon/Seyon
MODEMDEFAULTS=/etc/X11/seyon/Seyon-modem
. /usr/share/debconf/confmodule
db_version 2.0
if [ ! -f $COLORDEFAULTS ] || [ ! -f $MODEMDEFAULTS ]; then
# No longer need to worry about colour/mono app-defaults any more; the
# system will get it right...
ln -sf /usr/bin/x-terminal-emulator $EMU
fi
# Automatically added by dh_installmenu/11.1.6ubuntu1
if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
update-menus
fi
# End automatically added section
|