diff --git a/src/pylorax/api/compose.py b/src/pylorax/api/compose.py index f7e5c118..c4ea3e7f 100644 --- a/src/pylorax/api/compose.py +++ b/src/pylorax/api/compose.py @@ -369,7 +369,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)