77 lines
1.4 KiB
Plaintext
77 lines
1.4 KiB
Plaintext
|
%include rocky-container.ks
|
||
|
|
||
|
%packages --excludedocs --inst-langs=en --nocore --exclude-weakdeps
|
||
|
bash
|
||
|
coreutils-single
|
||
|
glibc-minimal-langpack
|
||
|
microdnf
|
||
|
rocky-release
|
||
|
|
||
|
-brotli
|
||
|
-dosfstools
|
||
|
-e2fsprogs
|
||
|
-firewalld
|
||
|
-fuse-libs
|
||
|
-gettext*
|
||
|
-gnupg2-smime
|
||
|
-grub\*
|
||
|
-hostname
|
||
|
-iptables
|
||
|
-iputils
|
||
|
-kernel
|
||
|
-kexec-tools
|
||
|
-less
|
||
|
-libss
|
||
|
-os-prober*
|
||
|
-pinentry
|
||
|
-qemu-guest-agent
|
||
|
-rootfiles
|
||
|
-shared-mime-info
|
||
|
-tar
|
||
|
-trousers
|
||
|
-vim-minimal
|
||
|
-xfsprogs
|
||
|
-xkeyboard-config
|
||
|
-yum
|
||
|
%end
|
||
|
|
||
|
%post --erroronfail --log=/root/anaconda-post.log
|
||
|
# container customizations inside the chroot
|
||
|
|
||
|
|
||
|
rpm --rebuilddb
|
||
|
|
||
|
/bin/date +%Y-%m-%d_%H:%M:%S > /etc/BUILDTIME
|
||
|
|
||
|
echo 'container' > /etc/dnf/vars/infra
|
||
|
|
||
|
LANG="en_US"
|
||
|
echo '%_install_langs en_US.UTF-8' > /etc/rpm/macros.image-language-conf
|
||
|
echo 'LANG="C.UTF-8"' > /etc/locale.conf
|
||
|
|
||
|
rm -f /var/lib/dnf/history.*
|
||
|
rm -fr "/var/log/*" "/tmp/*" "/tmp/.*"
|
||
|
|
||
|
for dir in $(ls -d "/usr/share/{locale,i18n}/*" | grep -v 'en_US\|all_languages\|locale\.alias'); do rm -fr $dir; done
|
||
|
|
||
|
# systemd fixes
|
||
|
umount /run
|
||
|
systemd-tmpfiles --create --boot
|
||
|
|
||
|
# mask mounts and login bits
|
||
|
systemctl mask \
|
||
|
console-getty.service \
|
||
|
dev-hugepages.mount \
|
||
|
getty.target \
|
||
|
sys-fs-fuse-connections.mount \
|
||
|
systemd-logind.service \
|
||
|
systemd-remount-fs.service
|
||
|
|
||
|
# Cleanup the image
|
||
|
rm -f /etc/udev/hwdb.bin
|
||
|
rm -rf /usr/lib/udev/hwdb.d/ \
|
||
|
/boot /var/lib/dnf/history.* \
|
||
|
"/tmp/*" "/tmp/.*" || true
|
||
|
|
||
|
%end
|