2010-02-14 13:05:00 +01:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
configure)
|
2010-03-28 19:14:41 +02:00
|
|
|
update-alternatives \
|
2015-12-09 20:33:41 +01:00
|
|
|
--install /usr/share/plymouth/themes/default.plymouth default.plymouth \
|
|
|
|
/usr/share/plymouth/themes/lubuntu-logo/lubuntu-logo.plymouth 150
|
2010-03-28 19:14:41 +02:00
|
|
|
|
|
|
|
if which update-initramfs >/dev/null 2>&1
|
|
|
|
then
|
|
|
|
update-initramfs -u
|
|
|
|
fi
|
2010-02-14 13:05:00 +01:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|