diff options
Diffstat (limited to 'libre/grub2/grub2.install')
-rw-r--r-- | libre/grub2/grub2.install | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/libre/grub2/grub2.install b/libre/grub2/grub2.install new file mode 100644 index 000000000..898dc9246 --- /dev/null +++ b/libre/grub2/grub2.install @@ -0,0 +1,30 @@ +post_install() { + + if [ -f /boot/grub/grub.cfg.pacsave ]; then + echo "Copying /boot/grub/grub.cfg.pacsave to /boot/grub/grub.cfg" + install -Dm644 /boot/grub/grub.cfg.pacsave /boot/grub/grub.cfg + fi + + echo -n "Generating grub.cfg.example config file... " + grub-mkconfig -o /boot/grub/grub.cfg.example 2> /dev/null + echo "done." + +cat << EOF + An example config file is created at /boot/grub/grub.cfg.example + + For more information and additional config settings please see http://wiki.archlinux.org/index.php/GRUB2 + +EOF + +} + + +post_upgrade() { +cat << EOF + An example config file is created at /boot/grub/grub.cfg.example + + For more information and additional config settings please see http://wiki.archlinux.org/index.php/GRUB2 + +EOF +} + |