17 lines
612 B
YAML
17 lines
612 B
YAML
# The bootc components.
|
|
packages:
|
|
- systemd
|
|
- bootc
|
|
# bootc pulls in podman, which pulls in containers-common, which wants
|
|
# `iptables`. Currently that pulls in iptables-legacy. Let's explicitly name
|
|
# iptables-nft instead to satisfy it.
|
|
- iptables-nft
|
|
# 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
|