The FAIL output received when running the in-place checker script: ssg-inplace-upgrade-readiness-checker_v11.1.00.17707.sh
System Check: Validating disk layout..
Gateway may experience boot failure due to missing persistent volume labels for /boot or /boot/efi.
System Check: Disk layout checks - FAIL
Gateway 11.1
The block in the checker script checks # of disks if greater than 1 and no labels default it will fail
The script does a check
number_of_block_devices=$(lsblk -d | tail -n +2 | wc -l)
if [ "$number_of_block_devices" -gt 1 ]; then
boot_volume_label=$(blkid | grep LABEL=\"BOOT\")
boot_file_system=$(awk '$2 == "/boot" {print $1}' /etc/fstab)
boot_efi_volume_label=$(blkid | grep LABEL=\"EFI\")
boot_efi_file_system=$(awk '$2 == "/boot/efi" {print $1}'
The URL contains steps to modify the /etc/fstab with labels - see “Customizing the Storage Layout”