Hi all,
I am currently working on an ansible tool for creating a qcow2 image of Rocky Linux, and I am running into a problem at the end of my OS installation. My start up script handles everything up to the end but the computer gets stuck on the finish configuration screen pictured below.
Does anyone know how to bypass this screen using a startup script? My startup script is as follows (some lines removed pertaining to credentials):
#version=RHEL8
# Use graphical install
graphical
repo --name="AppStream" --baseurl=file:///run/install/sources/mount-0000-cdrom/AppStream
%packages
@^graphical-server-environment
@guest-agents
@virtualization-hypervisor
kexec-tools
%end
# Keyboard layouts
keyboard --xlayouts='us'
# System language
lang en_US.UTF-8
# Network information
network --bootproto=dhcp --device=enp0s5 --ipv6=auto --activate
network --bootproto=dhcp --hostname=localhost.localdomain
# Use CDROM installation media
cdrom
# Run the Setup Agent on first boot
firstboot --enable
ignoredisk --only-use=vda
autopart
# Partition clearing information
clearpart --none --initlabel
# System timezone
timezone America/New_York --isUtc
%addon com_redhat_kdump --enable --reserve-mb='auto'
%end
%anaconda
pwpolicy root --minlen=6 --minquality=1 --notstrict --nochanges --notempty
pwpolicy user --minlen=6 --minquality=1 --notstrict --nochanges --emptyok
pwpolicy luks --minlen=6 --minquality=1 --notstrict --nochanges --notempty
%end
eula --agreed
reboot