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.
artwork/debian/lubuntu-grub-theme.prerm

24 lines
313 B

#!/bin/sh
# prerm script for lubuntu-grub-theme
set -e
#DEBHELPER#
case "$1" in
remove|upgrade|deconfigure)
rm /etc/default/grub.d/lubuntu-grub-theme.cfg
update-grub
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`$1'" >&2
exit 1
;;
esac
exit 0