diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-02-10 13:53:23 -0600 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-02-10 13:53:23 -0600 |
commit | be9dd340ef7d752d61d0d3b4b6b18164016f4605 (patch) | |
tree | 22466eb7977fbe9ae29dc83ac61ea9f77f86d0e7 /libre-testing/grub2/grub2.install | |
parent | 9b6fb533bdf48dc4bc3adb21c57366090aa6c5f6 (diff) | |
parent | ca888a4fabb768d38874b5f983cd84eba801ae7f (diff) |
Merge http://projects.parabolagnulinux.org/abslibre
Diffstat (limited to 'libre-testing/grub2/grub2.install')
-rw-r--r-- | libre-testing/grub2/grub2.install | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/libre-testing/grub2/grub2.install b/libre-testing/grub2/grub2.install new file mode 100644 index 000000000..898dc9246 --- /dev/null +++ b/libre-testing/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 +} + |