Remove --fstype from the generated part line
Instead of specifying the fstype, just let anaconda use the default.
This commit is contained in:
parent
3cd4a3cb49
commit
0e629f3d2a
@ -337,7 +337,7 @@ def start_build(cfg, dnflock, gitlock, branch, recipe_name, compose_type, test_m
|
|||||||
f.write('clearpart --all --initlabel\n')
|
f.write('clearpart --all --initlabel\n')
|
||||||
|
|
||||||
# Write the root partition and it's size in MB (rounded up)
|
# 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)
|
f.write(ks_template)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user