* debian/lubuntu-plymouth-theme.postinst

debian/lubuntu-plymouth-theme.postrm
   - Update to the new way to set the default plymouth theme (LP: #550011)
ubuntu/bionic
Julien Lavergne 14 years ago
parent 0125b3cd76
commit 4cc68243bb

3
debian/changelog vendored

@ -2,6 +2,9 @@ lubuntu-artwork (0.5) UNRELEASED; urgency=low
* Update logo with the new branding. * Update logo with the new branding.
* lubuntu-logo.script: Backport changes made on ubuntu-logo.script. * lubuntu-logo.script: Backport changes made on ubuntu-logo.script.
* debian/lubuntu-plymouth-theme.postinst
debian/lubuntu-plymouth-theme.postrm
- Update to the new way to set the default plymouth theme (LP: #550011)
-- Julien Lavergne <gilir@ubuntu.com> Sat, 13 Mar 2010 18:29:26 +0100 -- Julien Lavergne <gilir@ubuntu.com> Sat, 13 Mar 2010 18:29:26 +0100

@ -18,8 +18,14 @@
case "$1" in case "$1" in
configure) configure)
# FIXME: do this with alternatives update-alternatives \
/usr/sbin/plymouth-set-default-theme --rebuild-initrd lubuntu-logo --install /lib/plymouth/themes/default.plymouth default.plymouth \
/lib/plymouth/themes/lubuntu-logo/lubuntu-logo.plymouth 150
if which update-initramfs >/dev/null 2>&1
then
update-initramfs -u
fi
;; ;;
abort-upgrade|abort-deconfigure|abort-remove) abort-upgrade|abort-deconfigure|abort-remove)

@ -1,30 +1,50 @@
#!/bin/sh #!/bin/sh -e
# This script can be called in the following ways:
# #
# see: dh_installdeb(1) # 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
# summary of how this script can be called: case "$1" in
# * <postrm> `remove' remove)
# * <postrm> `purge' update-alternatives \
# * <old-postrm> `upgrade' <new-version> --remove default.plymouth /lib/plymouth/themes/lubuntu-logo/lubuntu-logo.plymouth
# * <new-postrm> `failed-upgrade' <old-version>
# * <new-postrm> `abort-install' if which update-initramfs >/dev/null 2>&1
# * <new-postrm> `abort-install' <old-version> then
# * <new-postrm> `abort-upgrade' <old-version> update-initramfs -u
# * <disappearer's-postrm> `disappear' <overwriter> fi
# <overwriter-version> ;;
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
purge)
;;
case "$1" in upgrade|failed-upgrade|disappear)
purge|remove)
# FIXME: do this with alternatives
/usr/sbin/plymouth-set-default-theme --rebuild-initrd ubuntu-logo
;; ;;
upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) abort-install|abort-upgrade)
;; ;;
*) *)
@ -34,5 +54,4 @@ case "$1" in
esac esac
#DEBHELPER# #DEBHELPER#
exit 0 exit 0

Loading…
Cancel
Save