diff --git a/tier-0/bootc-config.yaml b/tier-0/bootc-config.yaml new file mode 100644 index 0000000..f885d91 --- /dev/null +++ b/tier-0/bootc-config.yaml @@ -0,0 +1,10 @@ +# Configuration for bootc +postprocess: + # 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 diff --git a/tier-0/bootc.yaml b/tier-0/bootc.yaml index 10c09f4..a862e6c 100644 --- a/tier-0/bootc.yaml +++ b/tier-0/bootc.yaml @@ -10,13 +10,3 @@ exclude-packages: # chosen as the package to satisfy the `kernel-core` dependency from # the kernel package. - kernel-debug-core - -postprocess: - # 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 diff --git a/tier-0/manifest.yaml b/tier-0/manifest.yaml index 6e79d13..8ec2832 100644 --- a/tier-0/manifest.yaml +++ b/tier-0/manifest.yaml @@ -55,6 +55,7 @@ conditional-include: include: - ostree.yaml + - bootc-config.yaml - initramfs.yaml packages: diff --git a/tier-1/bootc-config.yaml b/tier-1/bootc-config.yaml new file mode 120000 index 0000000..9f9c8ab --- /dev/null +++ b/tier-1/bootc-config.yaml @@ -0,0 +1 @@ +../tier-0/bootc-config.yaml \ No newline at end of file