Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ansible/roles/test/templates/grub.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set timeout=1

menuentry 'Install' {
{%- if distro.startswith('leap15') %}
linux linux ro autoyast=http://{{ repo }}/{{ distro }}-autoyast install=http://{{ repo }}/openSUSE-Leap-{{ distro[4:] }}-DVD-{{ arch }}-Current ifcfg={{ interface }}=dhcp textmode=1 display=1 proxy={{ proxy }} vnc=1 VNCPassword=12345678
linux linux ro autoyast=http://{{ repo }}/{{ distro }}-autoyast install=http://{{ repo }}/openSUSE-Leap-{{ distro[4:] }}-DVD-{{ arch }}-Current ifcfg={{ interface }}=dhcp textmode=1 display=1 proxy={{ proxy }} vnc=1 VNCPassword=12345678 zyppargs="--option download.use_metalink=false"
initrd initrd
{% else %}
linux vmlinuz ro ip={{ interface }}:dhcp inst.ks=http://{{ repo }}/{{ distro }}-kickstart
Expand Down
5 changes: 5 additions & 0 deletions ansible/roles/test/templates/leap15.5-autoyast
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,10 @@ curl -so /dev/null http://{{ repo }}/autoyast-progress/pre-install-leap15.5 || t
<![CDATA[
curl -so /dev/null http://{{ repo }}/autoyast-progress/post-started-leap15.5 || true
systemctl stop sshd
# Metalink causes zypper to use partial/range downloads which
# breaks caching in the squid proxy.
mkdir -p /etc/zypp
echo "download.use_metalink = false" >> /etc/zypp/zypp.conf
curl -so /dev/null http://{{ repo }}/autoyast-progress/zypper-update-leap15.5 || true
zypper -n update
curl -so /dev/null http://{{ repo }}/autoyast-progress/zypper-update-done-leap15.5 || true
Expand Down Expand Up @@ -200,6 +204,7 @@ curl -so /dev/null http://{{ repo }}/autoyast-progress/post-complete-leap15.5 ||
<script>
<source>
<![CDATA[
curl -so /dev/null http://{{ repo }}/autoyast-progress/init-scripts-leap15.5 || true
systemctl enable sshd
]]>
</source>
Expand Down
Loading