73 lines
2.4 KiB
YAML
73 lines
2.4 KiB
YAML
# Flip this back on, we're going to be a larger system
|
|
recommends: true
|
|
|
|
include:
|
|
- ../tier-x/manifest.yaml
|
|
- networking-tools.yaml
|
|
- system-configuration.yaml
|
|
- coreos-user-experience.yaml
|
|
- persistent-journal.yaml
|
|
- initramfs-full.yaml
|
|
|
|
packages:
|
|
- nfs-utils
|
|
# Additional firewall support; we aren't including these in RHCOS or they
|
|
# don't exist in RHEL
|
|
- iptables-services
|
|
- WALinuxAgent-udev
|
|
# Used by admins interactively
|
|
- openssl
|
|
# Provides terminal tools like clear, reset, tput, and tset
|
|
- ncurses
|
|
# i18n
|
|
- kbd
|
|
# zram-generator (but not zram-generator-defaults) for F33 change
|
|
# https://github.com/coreos/fedora-coreos-tracker/issues/509
|
|
- zram-generator
|
|
|
|
# These are random architecture-specific packages
|
|
packages-x86_64: []
|
|
packages-aarch64: []
|
|
|
|
postprocess:
|
|
# Undo RPM scripts enabling units; we want the presets to be canonical
|
|
# https://github.com/projectatomic/rpm-ostree/issues/1803
|
|
- |
|
|
#!/usr/bin/env bash
|
|
set -xeuo pipefail
|
|
rm -rf /etc/systemd/system/*
|
|
systemctl preset-all
|
|
rm -rf /etc/systemd/user/*
|
|
systemctl --user --global preset-all
|
|
# See: https://github.com/coreos/fedora-coreos-tracker/issues/1253
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=2112857
|
|
# https://github.com/coreos/rpm-ostree/issues/3918
|
|
# Temporary workaround to remove the SetGID binary from liblockfile that is
|
|
# pulled by the s390utils but not needed for /usr/sbin/zipl.
|
|
- |
|
|
#!/usr/bin/env bash
|
|
set -xeuo pipefail
|
|
rm -f /usr/bin/dotlockfile
|
|
|
|
# Things we don't expect to ship on the host. We currently
|
|
# have recommends: false so these could only come in via
|
|
# hard requirement, in which case the build will fail.
|
|
exclude-packages:
|
|
- perl
|
|
- perl-interpreter
|
|
- nodejs
|
|
- grubby
|
|
- cowsay # Just in case
|
|
# Let's make sure initscripts doesn't get pulled back in
|
|
# https://github.com/coreos/fedora-coreos-tracker/issues/220#issuecomment-611566254
|
|
- initscripts
|
|
# For (datacenter/cloud oriented) servers, we want to see the details by default.
|
|
# https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/HSMISZ3ETWQ4ETVLWZQJ55ARZT27AAV3/
|
|
- plymouth
|
|
# Do not use legacy ifcfg config format in NetworkManager
|
|
# See https://github.com/coreos/fedora-coreos-config/pull/1991
|
|
- NetworkManager-initscripts-ifcfg-rh
|
|
# Let's not have both legacy and nft versions in the image. Users are free to
|
|
# also layer legacy themselves if they want.
|
|
- iptables-legacy
|