You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
953 B
44 lines
953 B
#!/bin/sh -e
|
|
# 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>
|
|
|
|
|
|
case "$1" in
|
|
remove)
|
|
update-alternatives \
|
|
--remove text.plymouth /usr/share/plymouth/themes/lubuntu-text/lubuntu-text.plymouth
|
|
|
|
if which update-initramfs >/dev/null 2>&1
|
|
then
|
|
update-initramfs -u
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
exit 0
|