Bug #34311
closedAutoYaST SLES template invalid for SLES 15 SP3
Description
The autoyast installation of SLES 15 SP3 does not like a few XML elements of the AutoYaST SLES template anymore:
"dhcp_resolv" is not supported anymore as it looks ( https://github.com/theforeman/foreman/blob/develop/app/views/unattended/provisioning_templates/provision/autoyast_sles_default.erb#L37).
The whole "runlevel" block is not supported anymore (https://github.com/theforeman/foreman/blob/develop/app/views/unattended/provisioning_templates/provision/autoyast_sles_default.erb#L125).
Instead it needs to look like this:
<services-manager>
<default_target>multi-user</default_target>
<services>
<enable>
<service>sshd</service>
</enable>
</services>
</services-manager>
With these two changes the XML gets valid again. (Can not confirm that 100%-ly, since we use our own copied templated with a few custom modifications and made those changes there)
It is worth to mention that SuSE made this changes under the hood between SLES 15 SP2 and SLES 15 SP3 without mentioning those changes in the documentations :-/