summaryrefslogtreecommitdiffstats
path: root/ubuntu/_base/defaultsettings/desktop-base/debian/postrm
blob: 864bf9e6a6a9f4523543904bc67891de5c0f5d9d (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh -e

#DEBHELPER#

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