artwork/debian/lubuntu-artwork.postrm
Julien Lavergne a4fe10cf29 * Restore original virtual terminal color palette (from xubuntu-artwork)
- debian/lubuntu-artwork.postint & debian/lubuntu-artwork.postrm: Use the
   new default virtual terminal color palette instead of forcing the original
   one.
 - debian/control: Depend on libnewt0.52 to make sure that the newt-palette
   alternatives are registered.
2011-04-04 23:29:36 +02:00

55 lines
1.1 KiB
Bash
Executable File

#!/bin/sh
# This script can be called in the following ways:
#
# After the package was removed:
# <postrm> remove
#
# After the package was purged:
# <postrm> purge
#
# After the package was upgraded:
# <old-postrm> upgrade <new-version>
# if that fails:
# <new-postrm> failed-upgrade <old-version>
#
#
# After all of the packages files have been replaced:
# <postrm> disappear <overwriting-package> <version>
#
#
# If preinst fails during install:
# <new-postrm> abort-install
#
# If preinst fails during upgrade of removed package:
# <new-postrm> abort-install <old-version>
#
# If preinst fails during upgrade:
# <new-postrm> abort-upgrade <old-version>
set -e
case "$1" in
remove)
if update-alternatives --query newt-palette | grep -qs "Value: /etc/newt/palette.original"; then
update-alternatives --auto newt-palette
fi
;;
purge)
;;
upgrade|failed-upgrade|disappear)
;;
abort-install|abort-upgrade)
;;
*)
echo "$0 called with unknown argument \`$1'" 1>&2
exit 1
;;
esac
#DEBHELPER#
exit 0