2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-24 15:05:36 +00:00

Fix quoting of EFIFSTYPE in pre.rh

pre.rh incorrectly had EFIFSTYPE on the wrong side of the quotes.
This commit is contained in:
Jarrod Johnson
2015-07-23 09:01:35 -04:00
parent 5fcc7aac8e
commit 3656dea07d

View File

@ -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