#!/bin/sh

set -e

. /usr/share/debconf/confmodule

case "$1" in
    remove|purge)
        rm -f /etc/default/grub.d/oem-flavour.cfg
        if command -v update-grub; then
            update-grub
        fi
    ;;
esac

#DEBHELPER#
