2013-02-15 02:34:09 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2013-09-14 18:06:08 +00:00
|
|
|
yum remove -y grub2
|
|
|
|
# Install grub2 dependencies to minimise packages installed during finalise.
|
|
|
|
install-packages grub2-tools gettext os-prober system-logos
|
|
|
|
|
2014-01-10 21:22:27 +00:00
|
|
|
# Remove all old versions of grub2 from the yum cache and then ensure the
|
|
|
|
# latest version is in the cache.
|
|
|
|
basearch=$(cat /etc/yum/vars/basearch)
|
|
|
|
find /tmp/yum/$basearch -regex ".*/grub2-[0-9].*\.rpm" -exec rm -f {} \;
|
2013-09-14 18:06:08 +00:00
|
|
|
install-packages -d grub2
|
|
|
|
|
|
|
|
# Copy grub2 rpm out of mounted yum cache for install during finalise
|
|
|
|
mkdir /tmp/grub
|
|
|
|
cp $(find /tmp/yum/$basearch -regex ".*/grub2-[0-9].*\.rpm") /tmp/grub
|
|
|
|
echo "rpm -i /tmp/grub/*.rpm" > /tmp/grub/install
|
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
|