From: Daan De Meyer Date: Tue, 24 Jan 2023 11:04:51 +0000 (+0100) Subject: centos: Use ext4 as the default filesystem instead of xfs X-Git-Tag: v15~353 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d2a9ffb8476bb7e21c3f48afe23a63858c623be;p=thirdparty%2Fmkosi.git centos: Use ext4 as the default filesystem instead of xfs --- diff --git a/mkosi/distributions/centos.py b/mkosi/distributions/centos.py index f4fb543bb..7fb1f9837 100644 --- a/mkosi/distributions/centos.py +++ b/mkosi/distributions/centos.py @@ -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…")