]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
centos: Use ext4 as the default filesystem instead of xfs
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Tue, 24 Jan 2023 11:04:51 +0000 (12:04 +0100)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Tue, 24 Jan 2023 11:18:42 +0000 (12:18 +0100)
mkosi/distributions/centos.py

index f4fb543bb2777795851d814e6d3b42c543ce3878..7fb1f98378edf6ab49fd75eff36b1f6268918db2 100644 (file)
@@ -38,7 +38,10 @@ class CentosInstaller(DistributionInstaller):
 
     @classmethod
     def filesystem(cls) -> str:
-        return "xfs"
+        # This should really be "xfs" but unprivileged population of XFS filesystems with files containing
+        # spaces in their path is broken and needs fixing in xfsprogs, see
+        # https://marc.info/?l=linux-xfs&m=167450838316386&w=2.
+        return "ext4"
 
     @classmethod
     @complete_step("Installing CentOS…")