forked from sig_core/kickstarts
grow genclo disk, reqpart on vagrant
This commit is contained in:
parent
225ede7fc5
commit
97abb0700a
@ -4,8 +4,7 @@
|
|||||||
|
|
||||||
# Basic setup information
|
# Basic setup information
|
||||||
|
|
||||||
url --url https://dl.rockylinux.org/stg/rocky/8/BaseOS/$basearch/os/
|
text
|
||||||
|
|
||||||
bootloader --disable
|
bootloader --disable
|
||||||
firewall --disabled
|
firewall --disabled
|
||||||
network --bootproto=dhcp --device=link --activate --onboot=on
|
network --bootproto=dhcp --device=link --activate --onboot=on
|
96
Rocky-8-Container-Minimal.ks
Normal file
96
Rocky-8-Container-Minimal.ks
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
# This is a minimal Rocky kickstart designed for docker.
|
||||||
|
# It will not produce a bootable system
|
||||||
|
# To use this kickstart, run make
|
||||||
|
|
||||||
|
# Basic setup information
|
||||||
|
|
||||||
|
text
|
||||||
|
bootloader --disable
|
||||||
|
firewall --disabled
|
||||||
|
network --bootproto=dhcp --device=link --activate --onboot=on
|
||||||
|
rootpw --lock --iscrypted locked
|
||||||
|
selinux --disabled
|
||||||
|
shutdown
|
||||||
|
|
||||||
|
keyboard us
|
||||||
|
lang en_US.UTF-8
|
||||||
|
timezone --isUtc --nontp UTC
|
||||||
|
|
||||||
|
# Disk setup
|
||||||
|
zerombr
|
||||||
|
clearpart --all --initlabel
|
||||||
|
autopart --noboot --nohome --noswap --nolvm --fstype=ext4
|
||||||
|
|
||||||
|
# Package setup
|
||||||
|
%packages --ignoremissing --excludedocs --instLangs=en --nocore --excludeWeakdeps
|
||||||
|
bash
|
||||||
|
binutils
|
||||||
|
coreutils-single
|
||||||
|
glibc-minimal-langpack
|
||||||
|
hostname
|
||||||
|
iputils
|
||||||
|
less
|
||||||
|
rocky-release
|
||||||
|
rootfiles
|
||||||
|
tar
|
||||||
|
vim-minimal
|
||||||
|
yum
|
||||||
|
|
||||||
|
-brotli
|
||||||
|
-dosfstools
|
||||||
|
-kexec-tools
|
||||||
|
-e2fsprogs
|
||||||
|
-firewalld
|
||||||
|
-fuse-libs
|
||||||
|
-gettext*
|
||||||
|
-gnupg2-smime
|
||||||
|
-grub\*
|
||||||
|
-iptables
|
||||||
|
-kernel
|
||||||
|
-libss
|
||||||
|
-os-prober*
|
||||||
|
-pinentry
|
||||||
|
-qemu-guest-agent
|
||||||
|
-shared-mime-info
|
||||||
|
-trousers
|
||||||
|
-xfsprogs
|
||||||
|
-xkeyboard-config
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --erroronfail --log=/root/anaconda-post.log
|
||||||
|
# container customizations inside the chroot
|
||||||
|
|
||||||
|
# Stay compatible
|
||||||
|
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
|
||||||
|
|
||||||
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1727489
|
||||||
|
echo 'LANG="C.UTF-8"' > /etc/locale.conf
|
||||||
|
|
||||||
|
# systemd fixes
|
||||||
|
:> /etc/machine-id
|
||||||
|
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
|
@ -19,7 +19,7 @@ bootloader --append="console=ttyS0,115200n8 no_timer_check crashkernel=auto net.
|
|||||||
zerombr
|
zerombr
|
||||||
clearpart --all --initlabel
|
clearpart --all --initlabel
|
||||||
reqpart
|
reqpart
|
||||||
part / --fstype="xfs" --ondisk=vda --size=7950
|
part / --fstype="xfs" --ondisk=vda --size=8000 --grow
|
||||||
|
|
||||||
%pre --erroronfail
|
%pre --erroronfail
|
||||||
/usr/sbin/parted -s /dev/vda mklabel gpt
|
/usr/sbin/parted -s /dev/vda mklabel gpt
|
||||||
|
@ -20,7 +20,7 @@ bootloader --append="console=ttyS0,115200n8 no_timer_check crashkernel=auto net.
|
|||||||
zerombr
|
zerombr
|
||||||
clearpart --all --initlabel
|
clearpart --all --initlabel
|
||||||
reqpart
|
reqpart
|
||||||
part / --fstype="xfs" --ondisk=vda --size=8000
|
part / --fstype="xfs" --ondisk=vda --size=8000 --grow
|
||||||
|
|
||||||
%post --erroronfail
|
%post --erroronfail
|
||||||
passwd -d root
|
passwd -d root
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
url --url=http://dl.rockylinux.org/pub/rocky/8/BaseOS/x86_64/os
|
|
||||||
repo --name=AppStream --baseurl=http://dl.rockylinux.org/pub/rocky/8/AppStream/x86_64/os
|
|
||||||
text
|
text
|
||||||
keyboard --vckeymap us
|
keyboard --vckeymap us
|
||||||
lang en_US
|
lang en_US
|
||||||
@ -14,6 +12,7 @@ services --enabled=vmtoolsd
|
|||||||
bootloader --timeout=1 --append="no_timer_check console=tty0 console=ttyS0,115200n8 net.ifnames=0 biosdevname=0 elevator=noop"
|
bootloader --timeout=1 --append="no_timer_check console=tty0 console=ttyS0,115200n8 net.ifnames=0 biosdevname=0 elevator=noop"
|
||||||
zerombr
|
zerombr
|
||||||
clearpart --all --initlabel
|
clearpart --all --initlabel
|
||||||
|
reqpart
|
||||||
part / --fstype=xfs --asprimary --size=1024 --grow
|
part / --fstype=xfs --asprimary --size=1024 --grow
|
||||||
|
|
||||||
user --name=vagrant --plaintext --password=vagrant
|
user --name=vagrant --plaintext --password=vagrant
|
@ -14,6 +14,7 @@ services --enabled=vmtoolsd
|
|||||||
bootloader --timeout=1 --append="no_timer_check console=tty0 console=ttyS0,115200n8 net.ifnames=0 biosdevname=0 elevator=noop"
|
bootloader --timeout=1 --append="no_timer_check console=tty0 console=ttyS0,115200n8 net.ifnames=0 biosdevname=0 elevator=noop"
|
||||||
zerombr
|
zerombr
|
||||||
clearpart --all --initlabel
|
clearpart --all --initlabel
|
||||||
|
reqpart
|
||||||
part / --fstype=xfs --asprimary --size=1024 --grow
|
part / --fstype=xfs --asprimary --size=1024 --grow
|
||||||
|
|
||||||
user --name=vagrant --plaintext --password=vagrant
|
user --name=vagrant --plaintext --password=vagrant
|
Loading…
Reference in New Issue
Block a user