2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-30 09:36:41 +00:00

Merge pull request #254 from samveen/fix_253

[xCAT-Server]Fix #253 with minor improvement
This commit is contained in:
Xiaopeng Wang 2015-10-19 11:05:28 +08:00
commit 48aa4dd1cd
2 changed files with 1 additions and 6 deletions

View File

@ -237,11 +237,6 @@ else
fi
BOOTFSTYPE=ext3
EFIFSTYPE=vfat
if uname -r|grep ^3.*el7 > /dev/null; then
FSTYPE=xfs
BOOTFSTYPE=xfs
EFIFSTYPE=efi
fi
if [ `uname -m` = "ppc64" ]; then
echo 'part None --fstype "PPC PReP Boot" --ondisk '$instdisk' --size 8' >> /tmp/partitioning

View File

@ -200,7 +200,7 @@ fi
BOOTFSTYPE=ext3
EFIFSTYPE=vfat
if uname -r|grep '^3.*el7' > /dev/null; then
if uname -r|grep -q '^3.*el7'; then
BOOTFSTYPE=xfs
FSTYPE=xfs
EFIFSTYPE=efi