parent
cfd0885cc7
commit
40ae94c2a6
@ -0,0 +1,76 @@
|
||||
# MSVSphere 9 Generic Cloud image kickstart file
|
||||
|
||||
url --url https://rsync.inferitos.ru/msvsphere/9.5/BaseOS/aarch64/kickstart/
|
||||
repo --name=BaseOS --baseurl=https://rsync.inferitos.ru/msvsphere/9.5/BaseOS/aarch64/os/
|
||||
repo --name=AppStream --baseurl=https://rsync.inferitos.ru/msvsphere/9.5/AppStream/aarch64/os/
|
||||
|
||||
text
|
||||
skipx
|
||||
eula --agreed
|
||||
firstboot --disabled
|
||||
|
||||
lang C.UTF-8
|
||||
keyboard us
|
||||
timezone UTC --utc
|
||||
|
||||
network --bootproto=dhcp
|
||||
firewall --enabled --service=ssh
|
||||
services --disabled="kdump" --enabled="chronyd,rsyslog,sshd"
|
||||
selinux --enforcing
|
||||
|
||||
bootloader --timeout=1 --location=mbr --append="console=tty0 console=ttyS0,115200n8 no_timer_check crashkernel=auto net.ifnames=0"
|
||||
|
||||
%pre --erroronfail
|
||||
|
||||
parted -s -a optimal /dev/sda -- mklabel gpt
|
||||
parted -s -a optimal /dev/sda -- mkpart biosboot 1MiB 2MiB set 1 bios_grub on
|
||||
parted -s -a optimal /dev/sda -- mkpart '"EFI System Partition"' fat32 2MiB 202MiB set 2 esp on
|
||||
parted -s -a optimal /dev/sda -- mkpart boot ext4 202MiB 714MiB
|
||||
parted -s -a optimal /dev/sda -- mkpart root ext4 714MiB 100%
|
||||
|
||||
%end
|
||||
|
||||
part biosboot --fstype=biosboot --onpart=sda1
|
||||
part /boot/efi --fstype=efi --onpart=sda2
|
||||
part /boot --fstype=ext4 --onpart=sda3
|
||||
part / --fstype=ext4 --onpart=sda4
|
||||
|
||||
rootpw --plaintext msvsphere
|
||||
|
||||
reboot --eject
|
||||
|
||||
|
||||
%packages --inst-langs=en
|
||||
@core
|
||||
dracut-config-generic
|
||||
usermode
|
||||
-biosdevname
|
||||
-dnf-plugin-spacewalk
|
||||
-dracut-config-rescue
|
||||
-iprutils
|
||||
-iwl*-firmware
|
||||
-langpacks-*
|
||||
-mdadm
|
||||
-open-vm-tools
|
||||
-plymouth
|
||||
-rhn*
|
||||
-nfs-utils
|
||||
-rpcbind
|
||||
sphere-release-identity-server
|
||||
sphere-release-server
|
||||
sphere-release
|
||||
%end
|
||||
|
||||
|
||||
# disable kdump service
|
||||
%addon com_redhat_kdump --disable
|
||||
%end
|
||||
|
||||
%post --erroronfail
|
||||
|
||||
grub2-install --target=i386-pc /dev/sda
|
||||
|
||||
# permit root login via SSH with password authetication
|
||||
echo "PermitRootLogin yes" > /etc/ssh/sshd_config.d/01-permitrootlogin.conf
|
||||
|
||||
%end
|
Loading…
Reference in new issue