#!/bin/bash

if [ $EUID != 0 ]; then
    printf "%s\n" "$0: Need root to run"
    exit 1
fi

/usr/sbin/grub2-mkconfig -o /boot/grub2/grub.cfg
