Merge pull request #100 from cgwalters/enable-root-config-c9s
Always add bootc install config
This commit is contained in:
commit
d9a4b02b54
|
|
@ -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
|
||||
# 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
|
||||
|
|
|
|||
|
|
@ -55,6 +55,7 @@ conditional-include:
|
|||
|
||||
include:
|
||||
- ostree.yaml
|
||||
- bootc-config.yaml
|
||||
- initramfs.yaml
|
||||
|
||||
packages:
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
../tier-0/bootc-config.yaml
|
||||
Loading…
Reference in New Issue