diff --git a/src/pylorax/api/compose.py b/src/pylorax/api/compose.py index c0ed3b7d..9bf08ec6 100644 --- a/src/pylorax/api/compose.py +++ b/src/pylorax/api/compose.py @@ -339,7 +339,7 @@ def start_build(cfg, dnflock, gitlock, branch, recipe_name, compose_type, test_m f.write('clearpart --all --initlabel\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)