Added files for Rocky 9; tried some fixes on Almalinux 9 to stop it from crashing
This commit is contained in:
62
http/almalinux-9-server.ks
Normal file
62
http/almalinux-9-server.ks
Normal file
@ -0,0 +1,62 @@
|
||||
url --url="https://repo.almalinux.org/almalinux/$releasever/BaseOS/$basearch/os/"
|
||||
|
||||
# Keyboard layouts
|
||||
keyboard --vckeymap=us --xlayouts='us'
|
||||
# System language
|
||||
lang en_US.UTF-8
|
||||
|
||||
# System timezone
|
||||
timezone America/New_York --isUtc
|
||||
|
||||
# Crypted root password
|
||||
rootpw --iscrypted $6$kkuIkd8S9gDUhK8g$1XbqJDCjt1zQAhxb9sC2mE5CGd.D0xV1efu0R8h1e.oovRKtEWqR5KaTDPSTztpxSw2qmDVORZJGnNpiJxUFT1
|
||||
# MD5 password hashing
|
||||
authselect --useshadow --passalgo=sha512
|
||||
# Create my initial user :D
|
||||
#user --disabled
|
||||
user --name=xadmin --shell=/bin/bash --homedir=/home/xadmin --iscrypted --password=$6$y6lN/cfPPtlyaTXu$4QUYFl816sxWPuyR.eY6mCJ3ybYLNcF6Pw4ar4K7Dyy9LbedK3PjkTNZfWqSdoPRpJMjtrbpY1xQ.zDXxOTug.
|
||||
|
||||
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 /boot --fstype=ext3 --size=1000
|
||||
part swap --fstype="swap" --recommended
|
||||
part / --fstype=xfs --size=1 --grow
|
||||
|
||||
# Reboot after installation
|
||||
reboot --eject
|
||||
|
||||
%packages
|
||||
@base
|
||||
@core
|
||||
nfs-utils
|
||||
sudo
|
||||
qemu-guest-agent
|
||||
|
||||
%end
|
||||
|
||||
%post
|
||||
# Update the system
|
||||
yum -y update
|
||||
# Istall the EPEL repository
|
||||
yum -y install epel-release
|
||||
|
||||
yum -y install wget vim yum-plugin-versionlock
|
||||
|
||||
usermod -aG wheel xadmin
|
||||
|
||||
systemctl enable qemu-guest-agent
|
||||
|
||||
%end
|
||||
|
62
http/rocky-9-server.ks
Normal file
62
http/rocky-9-server.ks
Normal file
@ -0,0 +1,62 @@
|
||||
url --url="https://repo.almalinux.org/almalinux/$releasever/BaseOS/$basearch/os/"
|
||||
|
||||
# Keyboard layouts
|
||||
keyboard --vckeymap=us --xlayouts='us'
|
||||
# System language
|
||||
lang en_US.UTF-8
|
||||
|
||||
# System timezone
|
||||
timezone America/New_York --isUtc
|
||||
|
||||
# Crypted root password
|
||||
rootpw --iscrypted $6$kkuIkd8S9gDUhK8g$1XbqJDCjt1zQAhxb9sC2mE5CGd.D0xV1efu0R8h1e.oovRKtEWqR5KaTDPSTztpxSw2qmDVORZJGnNpiJxUFT1
|
||||
# MD5 password hashing
|
||||
authselect --useshadow --passalgo=sha512
|
||||
# Create my initial user :D
|
||||
#user --disabled
|
||||
user --name=xadmin --shell=/bin/bash --homedir=/home/xadmin --iscrypted --password=$6$y6lN/cfPPtlyaTXu$4QUYFl816sxWPuyR.eY6mCJ3ybYLNcF6Pw4ar4K7Dyy9LbedK3PjkTNZfWqSdoPRpJMjtrbpY1xQ.zDXxOTug.
|
||||
|
||||
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 /boot --fstype=ext3 --size=1000
|
||||
part swap --fstype="swap" --recommended
|
||||
part / --fstype=xfs --size=1 --grow
|
||||
|
||||
# Reboot after installation
|
||||
reboot --eject
|
||||
|
||||
%packages
|
||||
@base
|
||||
@core
|
||||
nfs-utils
|
||||
sudo
|
||||
qemu-guest-agent
|
||||
|
||||
%end
|
||||
|
||||
%post
|
||||
# Update the system
|
||||
yum -y update
|
||||
# Istall the EPEL repository
|
||||
yum -y install epel-release
|
||||
|
||||
yum -y install wget vim yum-plugin-versionlock
|
||||
|
||||
usermod -aG wheel xadmin
|
||||
|
||||
systemctl enable qemu-guest-agent
|
||||
|
||||
%end
|
||||
|
Reference in New Issue
Block a user