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.
artwork/debian/plymouth-theme-lubuntu-logo...

44 lines
956 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 default.plymouth /usr/share/plymouth/themes/lubuntu-logo/lubuntu-logo.plymouth
if which update-initramfs >/dev/null 2>&1
then
update-initramfs -u
fi
;;
esac
#DEBHELPER#
exit 0