Always add bootc install config
bootc isn't in C9S yet, but it is in the -dev images. Add the install config unconditionally so that `bootc install` works in the `centos-bootc-dev` image.
This commit is contained in:
parent
ddefbde644
commit
dd0a042a17
|
|
@ -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
|
||||||
|
|
@ -10,13 +10,3 @@ exclude-packages:
|
||||||
# chosen as the package to satisfy the `kernel-core` dependency from
|
# chosen as the package to satisfy the `kernel-core` dependency from
|
||||||
# the kernel package.
|
# the kernel package.
|
||||||
- kernel-debug-core
|
- 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
|
|
||||||
|
|
|
||||||
|
|
@ -55,6 +55,7 @@ conditional-include:
|
||||||
|
|
||||||
include:
|
include:
|
||||||
- ostree.yaml
|
- ostree.yaml
|
||||||
|
- bootc-config.yaml
|
||||||
- initramfs.yaml
|
- initramfs.yaml
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
../tier-0/bootc-config.yaml
|
||||||
Loading…
Reference in New Issue