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.
31 lines
542 B
31 lines
542 B
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
# Alternatives for usplash
|
|
update-alternatives --install \
|
|
/usr/lib/usplash/usplash-artwork.so \
|
|
usplash-artwork.so \
|
|
/usr/lib/usplash/moreblue-orbit-theme.so 60
|
|
|
|
if [ -x /usr/sbin/update-initramfs ]; then
|
|
update-initramfs -u
|
|
fi
|
|
;;
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
|
|
;;
|
|
|
|
*)
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|