kickstarts/Rocky-8-Container-Base.ks

99 lines
1.9 KiB
Plaintext
Raw Permalink Normal View History

2021-05-04 13:45:15 +00:00
# This is a minimal Rocky kickstart designed for docker.
# It will not produce a bootable system
2021-10-27 19:30:06 +00:00
# To use this kickstart, run make
2021-05-04 13:45:15 +00:00
# Basic setup information
2022-11-12 21:31:34 +00:00
url --url https://download.rockylinux.org/stg/rocky/8/BaseOS/$basearch/os/
2022-07-04 22:04:27 +00:00
text
bootloader --disable
2021-05-04 13:45:15 +00:00
firewall --disabled
network --bootproto=dhcp --device=link --activate --onboot=on
rootpw --lock --iscrypted locked
2021-10-26 23:55:24 +00:00
selinux --disabled
2021-05-04 13:45:15 +00:00
shutdown
keyboard us
lang en_US.UTF-8
timezone --isUtc --nontp UTC
2021-05-04 13:45:15 +00:00
# Disk setup
zerombr
clearpart --all --initlabel
autopart --noboot --nohome --noswap --nolvm --fstype=ext4
# Package setup
2021-10-26 23:55:24 +00:00
%packages --ignoremissing --excludedocs --instLangs=en --nocore --excludeWeakdeps
2021-05-04 13:45:15 +00:00
bash
binutils
2021-05-04 13:45:15 +00:00
coreutils-single
glibc-minimal-langpack
hostname
iputils # this pulls in systemd, lets ask for it by name, too
2021-05-04 13:45:15 +00:00
less
systemd
rocky-release
rootfiles
2021-05-04 13:45:15 +00:00
tar
vim-minimal
yum
-brotli
2021-05-04 13:45:15 +00:00
-dosfstools
2021-10-26 23:55:24 +00:00
-kexec-tools
2021-05-04 13:45:15 +00:00
-e2fsprogs
-firewalld
2021-05-04 13:45:15 +00:00
-fuse-libs
-gettext*
2021-05-04 13:45:15 +00:00
-gnupg2-smime
-grub\*
-iptables
-kernel
2021-05-04 13:45:15 +00:00
-libss
-os-prober*
2021-05-04 13:45:15 +00:00
-pinentry
-qemu-guest-agent
2021-05-04 13:45:15 +00:00
-shared-mime-info
-trousers
-xfsprogs
-xkeyboard-config
2021-05-04 13:45:15 +00:00
%end
%post --erroronfail --log=/root/anaconda-post.log
# container customizations inside the chroot
2021-10-27 19:30:06 +00:00
# Stay compatible
2021-05-04 13:45:15 +00:00
echo 'container' > /etc/dnf/vars/infra
#Generate installtime file record
/bin/date +%Y%m%d_%H%M > /etc/BUILDTIME
# Limit languages to help reduce size.
LANG="en_US"
echo "%_install_langs $LANG" > /etc/rpm/macros.image-language-conf
2021-10-27 19:30:06 +00:00
# https://bugzilla.redhat.com/show_bug.cgi?id=1727489
echo 'LANG="C.UTF-8"' > /etc/locale.conf
2021-05-04 13:45:15 +00:00
# systemd fixes
:> /etc/machine-id
umount /run
systemd-tmpfiles --create --boot
2021-10-27 19:30:06 +00:00
# mask mounts and login bits
systemctl mask \
console-getty.service \
2021-10-27 21:26:14 +00:00
dev-hugepages.mount \
2021-10-27 19:30:06 +00:00
getty.target \
sys-fs-fuse-connections.mount \
systemd-logind.service \
systemd-remount-fs.service
# Cleanup the image
2021-05-04 13:45:15 +00:00
rm -f /etc/udev/hwdb.bin
2021-10-27 19:30:06 +00:00
rm -rf /usr/lib/udev/hwdb.d/ \
/boot /var/lib/dnf/history.* \
2021-10-27 21:37:18 +00:00
/tmp/* /tmp/.* || true
2021-05-04 13:45:15 +00:00
%end