Files
desktop-base/debian/postrm
2010-10-11 19:01:29 +00:00

11 lines
169 B
Bash

#!/bin/sh -e
#DEBHELPER#
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
if which update-grub2 > /dev/null ; then
update-grub2 || true
fi
fi