Chicago95/debian/chicago95-theme-plymouth.prerm

26 lines
438 B
Plaintext
Raw Normal View History

2019-09-13 20:04:11 +02:00
#!/bin/sh
set -e
case "$1" in
remove|deconfigure)
update-alternatives --remove default.plymouth /usr/share/plymouth/themes/Chicago95/Chicago95.plymouth
update-alternatives --remove default.plymouth /usr/share/plymouth/themes/RetroTux/RetroTux.plymouth
;;
upgrade)
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0