Remove --fstype from the generated part line

Instead of specifying the fstype, just let anaconda use the default.

(cherry picked from commit 847fff4e11)

Related: rhbz#1656105
This commit is contained in:
David Shea 2018-09-28 14:27:11 -04:00
parent 60c7ab3e91
commit 1ca0393771

View File

@ -376,7 +376,7 @@ def start_build(cfg, yumlock, gitlock, branch, recipe_name, compose_type, test_m
f.write('clearpart --all\n')
# Write the root partition and it's size in MB (rounded up)
f.write('part / --fstype="ext4" --size=%d\n' % ceil(installed_size / 1024**2))
f.write('part / --size=%d\n' % ceil(installed_size / 1024**2))
f.write(ks_template)