21 lines
677 B
YAML
21 lines
677 B
YAML
# The bootc components.
|
|
packages:
|
|
- systemd
|
|
- ostree nss-altfiles
|
|
# For now this will be shipped in rpm-ostree; TODO fix this by shipping a separate epackage
|
|
# - bootc
|
|
# Required by bootc install today, though we'll likely switch bootc to use a Rust crate instead of sgdisk
|
|
- gdisk xfsprogs e2fsprogs dosfstools
|
|
|
|
exclude-packages:
|
|
# Exclude kernel-debug-core to make sure that it doesn't somehow get
|
|
# chosen as the package to satisfy the `kernel-core` dependency from
|
|
# the kernel package.
|
|
- kernel-debug-core
|
|
|
|
# rpm-ostree can be an alias for bootc, we want to enable that here.
|
|
postprocess:
|
|
- |
|
|
#!/usr/bin/env bash
|
|
ln -sr /usr/bin/{rpm-ostree,bootc}
|