@kratkale Two separate things. The first gets your PCs booting today.
PXE boot, now. The installer stopped before it rewrote the boot file, so the file still says https. Change it by hand:
sed -i 's#^chain https://#chain http://#' /tftpboot/default.ipxe grep chain /tftpboot/default.ipxeThe line must now start with chain http://192.168.0.196/. Boot one PC to test it. The next complete installer run writes this file again, with http.
The installer failure. Your certificates were not changed. The installer stopped before it created anything. The Secure Boot signing files that your settings name are not on disk, so it tried to create new ones. That needs the private key of your FOG root CA, and the key is not at /etc/fog/pki/root/ca/.fogCA.key. Your root certificate is still there, so your FOG clients are not affected.
Please do not delete anything, and do not run the installer with --recreate-CA. That replaces the CA that all your FOG clients trust.
Please post the output of these commands. They show only file names and paths, no key contents:
ls -la /etc/fog/pki /etc/fog/pki/root/ca /etc/fog/pki/secureboot /etc/fog/pki/secureboot/ca /etc/fog/pki/secureboot/leaf /opt/fog/snapins/ssl/CA ls -ld /opt/fog/pki grep -E '^PKI_(root|sb)_' /opt/fog/.fogsettings find / -xdev -name '.fogCA.key' 2>/dev/null