#!/bin/sh -e

#DEBHELPER#

if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
    if which update-grub2 > /dev/null ; then
        update-grub2 || true
    fi
fi

#if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
#    if [ -x /usr/sbin/plymouth-set-default-theme ];
#    then
#      plymouth-set-default-theme -r -R ||true
#    fi
#fi


