From 3656dea07d5c11da5b27cc9b34026b7c76ea80c6 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 23 Jul 2015 09:01:35 -0400 Subject: [PATCH] Fix quoting of EFIFSTYPE in pre.rh pre.rh incorrectly had EFIFSTYPE on the wrong side of the quotes. --- xCAT-server/share/xcat/install/scripts/pre.rh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/share/xcat/install/scripts/pre.rh b/xCAT-server/share/xcat/install/scripts/pre.rh index 95363f798..ee85680a1 100644 --- a/xCAT-server/share/xcat/install/scripts/pre.rh +++ b/xCAT-server/share/xcat/install/scripts/pre.rh @@ -248,7 +248,7 @@ if [ `uname -m` = "ppc64" ]; then fi if [ -d /sys/firmware/efi ]; then echo 'bootloader --driveorder='$instdisk >> /tmp/partitioning - echo 'part /boot/efi --size 50 --ondisk '$instdisk' --fstype $EFIFSTYPE' >> /tmp/partitioning + echo 'part /boot/efi --size 50 --ondisk '$instdisk' --fstype '$EFIFSTYPE >> /tmp/partitioning else echo 'bootloader' >> /tmp/partitioning fi