From 847fff4e11cf8a442a29e66fd2d28b82efbacc7a Mon Sep 17 00:00:00 2001 From: David Shea Date: Fri, 28 Sep 2018 14:27:11 -0400 Subject: [PATCH] Remove --fstype from the generated part line Instead of specifying the fstype, just let anaconda use the default. --- src/pylorax/api/compose.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pylorax/api/compose.py b/src/pylorax/api/compose.py index 816ea535..6a2b93ad 100644 --- a/src/pylorax/api/compose.py +++ b/src/pylorax/api/compose.py @@ -337,7 +337,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)