On previous versions of OpenSUSE I have been able to perform a headless install by copying initrd and linux from boot/x86_64/loader in the relevant repo and then create a custom grub entry like the following:
menuentry 'Install 15.6' {
load_video
set gfxpayload=keep
insmod gzio
echo 'Loading Remote Install System...'
linux /boot/linux splash=silent showopts vnc=1 vncpassword=<password> install=<repo url>
echo 'Loading initial ramdisk ...'
initrd /boot/initrd
}
I could then reboot and connect via vncviewer to perform the install.
I have been unable to find any equivalent method for a headless install with Agama so how do I go about performing a headless install of OpenSUSE 16.0?