Fixed sleep/reboot on error during GRUB boot

Signed-off-by: Jonathon Anderson <janderson@ciq.com>
This commit is contained in:
Jonathon Anderson
2025-06-30 23:26:42 -06:00
parent db3a3fee05
commit f2b091d4cb
2 changed files with 11 additions and 0 deletions

View File

@@ -24,6 +24,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Fixed a regression in SELinux support by restoring the `/run` mount during wwinit. #1910 - Fixed a regression in SELinux support by restoring the `/run` mount during wwinit. #1910
- Fixed `wwctl profile set` for disks, partitions and file systems. #1883 - Fixed `wwctl profile set` for disks, partitions and file systems. #1883
- Do not let API add a node that exists - Do not let API add a node that exists
- Fixed sleep/rebooting on error during GRUB boot. #1894
### Changed ### Changed

View File

@@ -58,6 +58,8 @@ menuentry "Single-stage boot" --id single-stage {
echo "!! Unable to load kernel." echo "!! Unable to load kernel."
echo "!! Rebooting in 15s..." echo "!! Rebooting in 15s..."
echo "!!" echo "!!"
sleep 15
reboot
fi fi
echo "Downloading images..." echo "Downloading images..."
@@ -71,6 +73,8 @@ menuentry "Single-stage boot" --id single-stage {
echo "!! Unable to load images." echo "!! Unable to load images."
echo "!! Rebooting in 15s..." echo "!! Rebooting in 15s..."
echo "!!" echo "!!"
sleep 15
reboot
fi fi
echo "Booting..." echo "Booting..."
@@ -101,6 +105,8 @@ menuentry "Single-stage boot (no compression)" --id single-stage-nocompress {
echo "!! Unable to load kernel." echo "!! Unable to load kernel."
echo "!! Rebooting in 15s..." echo "!! Rebooting in 15s..."
echo "!!" echo "!!"
sleep 15
reboot
fi fi
echo "Downloading images..." echo "Downloading images..."
@@ -153,6 +159,8 @@ menuentry "Two stage boot with dracut" --id dracut {
echo "!! Unable to load kernel." echo "!! Unable to load kernel."
echo "!! Rebooting in 15s..." echo "!! Rebooting in 15s..."
echo "!!" echo "!!"
sleep 15
reboot
fi fi
echo "Downloading initramfs..." echo "Downloading initramfs..."
@@ -163,6 +171,8 @@ menuentry "Two stage boot with dracut" --id dracut {
echo "!! Unable to load initramfs." echo "!! Unable to load initramfs."
echo "!! Rebooting in 15s..." echo "!! Rebooting in 15s..."
echo "!!" echo "!!"
sleep 15
reboot
fi fi
echo "Booting..." echo "Booting..."