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