Added build files for Rocky and Almalinux 10; updated Rocky and Almalinux 9 to 9.6
This commit is contained in:
61
http/rocky-server.ks
Normal file
61
http/rocky-server.ks
Normal file
@ -0,0 +1,61 @@
|
||||
url --url="https://dl.rockylinux.org/pub/rocky/$releasever/BaseOS/$basearch/os/"
|
||||
|
||||
# Keyboard layouts
|
||||
keyboard --vckeymap=us --xlayouts='us'
|
||||
# System language
|
||||
lang en_US.UTF-8
|
||||
|
||||
# System timezone
|
||||
timezone America/New_York
|
||||
|
||||
# Crypted root password
|
||||
rootpw --iscrypted $6$kkuIkd8S9gDUhK8g$1XbqJDCjt1zQAhxb9sC2mE5CGd.D0xV1efu0R8h1e.oovRKtEWqR5KaTDPSTztpxSw2qmDVORZJGnNpiJxUFT1
|
||||
# SHA512 password hashing
|
||||
authselect --useshadow --passalgo=sha512
|
||||
# Create my initial user :D
|
||||
user --name=xadmin --shell=/bin/bash --homedir=/home/xadmin --iscrypted --password=$6$8DdxHyrH6HfGZhDs$jEadYAMi3CTJivYgGjhG7S2C/ChZxv0w0L6AQ3Egn8K5xIA4OEqDngVfozfn.9kYxy.hWYpzwBE0qwytcU4BF0
|
||||
|
||||
network --device=eth0 --bootproto=dhcp --ipv6=auto --activate
|
||||
|
||||
# Run the Setup Agent on first boot
|
||||
firstboot --disable
|
||||
# SELinux configuration
|
||||
selinux --disabled
|
||||
|
||||
# System bootloader configuration
|
||||
bootloader --location=mbr
|
||||
# Clear the Master Boot Record
|
||||
zerombr
|
||||
# Partition clearing information
|
||||
clearpart --all --initlabel
|
||||
# Disk partitioning information
|
||||
part biosboot --fstype=biosboot --size=2
|
||||
part /boot --fstype=ext4 --size=1000
|
||||
part swap --fstype=swap --size=4096
|
||||
part / --fstype=xfs --size=1 --grow
|
||||
|
||||
# Reboot after installation
|
||||
reboot --eject
|
||||
|
||||
%packages
|
||||
@base
|
||||
@core
|
||||
bash
|
||||
nfs-utils
|
||||
sudo
|
||||
|
||||
%end
|
||||
|
||||
%post
|
||||
# Update the system
|
||||
dnf -y update
|
||||
# Istall the EPEL repository
|
||||
dnf -y install epel-release
|
||||
|
||||
dnf -y install wget vim yum-plugin-versionlock qemu-guest-agent
|
||||
|
||||
echo 'xadmin ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/xadmin
|
||||
|
||||
systemctl enable qemu-guest-agent
|
||||
|
||||
%end
|
Reference in New Issue
Block a user