Merge into the combined ks file

This commit is contained in:
lumarel 2023-04-02 15:47:42 +02:00
parent 1e7a211eb7
commit e41d68f01b
Signed by untrusted user who does not match committer: lumarel
GPG Key ID: B253BD0C2E71BADE
1 changed files with 12 additions and 7 deletions

View File

@ -15,7 +15,7 @@ shutdown
keyboard us keyboard us
lang en_US.UTF-8 lang en_US.UTF-8
timezone --utc --nontp UTC timezone --utc --nontp Etc/UTC
# Disk setup # Disk setup
zerombr zerombr
@ -27,23 +27,22 @@ autopart --noboot --nohome --noswap --nolvm --fstype=ext4
%end %end
# Package setup # Package setup
# NOTE(nhanlon) - 2022-11-23 adding --ignoremissing as dmidecode does not exist on all arches
%packages --ignoremissing --excludedocs --inst-langs=en --nocore --exclude-weakdeps %packages --ignoremissing --excludedocs --inst-langs=en --nocore --exclude-weakdeps
bash bash
binutils
brotli
coreutils-single coreutils-single
crypto-policies-scripts crypto-policies-scripts
dmidecode curl-minimal
findutils findutils
gdb-gdbserver
glibc-minimal-langpack glibc-minimal-langpack
libcurl gzip
libcurl-minimal
systemd systemd
rocky-release rocky-release
rootfiles rootfiles
tar tar
vim-minimal
util-linux util-linux
vim-minimal
which which
yum yum
@ -68,6 +67,7 @@ yum
%end %end
%post --erroronfail --log=/root/anaconda-post.log %post --erroronfail --log=/root/anaconda-post.log
set -eux
# container customizations inside the chroot # container customizations inside the chroot
# Stay compatible # Stay compatible
@ -97,10 +97,15 @@ systemctl mask \
systemd-logind.service \ systemd-logind.service \
systemd-remount-fs.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 # Cleanup the image
rm -f /etc/udev/hwdb.bin rm -f /etc/udev/hwdb.bin
rm -rf /usr/lib/udev/hwdb.d/ \ rm -rf /usr/lib/udev/hwdb.d/ \
/boot /var/lib/dnf/history.* \ /boot /var/lib/dnf/history.* \
/var/cache/* /var/log/* \
"/tmp/*" "/tmp/.*" || true "/tmp/*" "/tmp/.*" || true