# check whether GRUB is installed
grubcheck () {
if ! which grub-install >/dev/null; then return 1; fi
if ! which update-grub >/dev/null; then return 1; fi
}
# check whether LILO is installed