2013-02-15 02:34:09 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2013-04-02 00:25:25 +00:00
|
|
|
yum remove -y grub2-tools
|
2013-02-15 02:34:09 +00:00
|
|
|
|
2013-04-02 00:25:25 +00:00
|
|
|
#GRUB_CFG=/boot/grub2/grub.cfg
|
|
|
|
|
|
|
|
#[ -f "$GRUB_CFG" ]
|
2013-02-15 02:34:09 +00:00
|
|
|
|
|
|
|
# Update the config to have the search UUID of the image being built.
|
|
|
|
# When partition staging is moved to a separate stage, this will need to happen
|
|
|
|
# there. This generates a non-UUID config, which is irrelevant for booting with
|
|
|
|
# hypervisor kernel + ramdisk, and fixed up by 51-grub for vm images.
|
2013-04-02 00:25:25 +00:00
|
|
|
#GRUB_DISABLE_LINUX_UUID=true grub2-mkconfig -o $GRUB_CFG
|