Merge into the combined ks file

This commit is contained in:
lumarel 2023-04-02 15:45:56 +02:00 committed by Neil Hanlon
parent 8857a9ff53
commit 0454f16220
1 changed files with 12 additions and 5 deletions

View File

@ -15,7 +15,7 @@ shutdown
keyboard us
lang en_US.UTF-8
timezone --isUtc --nontp UTC
timezone --isUtc --nontp Etc/UTC
# Disk setup
zerombr
@ -31,14 +31,15 @@ dbus-broker-launch --scope=none
# Package setup
%packages --ignoremissing --excludedocs --instLangs=en --nocore --excludeWeakdeps
bash
binutils
brotli
coreutils-single
crypto-policies-scripts
dmidecode
curl-minimal
findutils
gdb-gdbserver
glibc-minimal-langpack
libcurl
gzip
libcurl-minimal
systemd
rocky-release
rootfiles
tar
@ -68,6 +69,7 @@ yum
%end
%post --erroronfail --log=/root/anaconda-post.log
set -eux
# container customizations inside the chroot
# Stay compatible
@ -97,10 +99,15 @@ systemctl mask \
systemd-logind.service \
systemd-remount-fs.service
# Remove network configuration files leftover from anaconda installation
# https://bugzilla.redhat.com/show_bug.cgi?id=1713089
rm -f /etc/sysconfig/network-scripts/ifcfg-*
# Cleanup the image
rm -f /etc/udev/hwdb.bin
rm -rf /usr/lib/udev/hwdb.d/ \
/boot /var/lib/dnf/history.* \
/var/cache/* /var/log/* \
/tmp/* /tmp/.* || true
%end