postrm 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 | #!/bin/sh
set -e
XTERM=/etc/X11/seyon/seyon-emu
COLORDEFAULTS=/etc/X11/seyon/Seyon
MODEMDEFAULTS=/etc/X11/seyon/Seyon-modem
if [ "$1" = "purge" ]; then
rm -f $XTERM $COLORDEFAULTS $MODEMDEFAULTS
rmdir /etc/X11/seyon /etc/X11 2>/dev/null || true
fi
# Automatically added by dh_installmenu/11.1.6ubuntu1
if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi
# End automatically added section
# Automatically added by dh_installdebconf/11.1.6ubuntu1
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_purge
fi
# End automatically added section
|