From f84eba92678e296b989d5ca0b054d5fa4303a629 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Sat, 14 Oct 2023 14:42:30 -0400 Subject: [PATCH] bootc: Move install configuration here Prep for dropping it out of upstream. --- tier-0/bootc.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tier-0/bootc.yaml b/tier-0/bootc.yaml index cc115e2..456bb31 100644 --- a/tier-0/bootc.yaml +++ b/tier-0/bootc.yaml @@ -13,10 +13,18 @@ exclude-packages: # the kernel package. - kernel-debug-core -# rpm-ostree can be an alias for bootc, we want to enable that here. postprocess: + # rpm-ostree can be an alias for bootc, we want to enable that here. - | #!/usr/bin/env bash if test ! -x /usr/bin/bootc && test -x /usr/bin/rpm-ostree; then ln -sr /usr/bin/{rpm-ostree,bootc} fi + # XFS is our default filesystem + - | + #!/usr/bin/env bash + mkdir -p /usr/lib/bootc/install/ + cat > /usr/lib/bootc/install/20-rhel.toml << EOF + [install] + root-fs-type = "xfs" + EOF