diff options
author | Christian Pointner <equinox@spreadspace.org> | 2021-07-02 13:41:19 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2021-07-02 13:41:19 +0200 |
commit | 93a7b8c5a8a57eb641e4bd7bc1f59f7be0295706 (patch) | |
tree | c997218fe767f70678ced659479c93cff9b8a9e0 /roles | |
parent | cosmetic change (diff) |
ws fix
Diffstat (limited to 'roles')
-rw-r--r-- | roles/installer/ubuntu/iso/templates/grub.cfg.j2 | 6 | ||||
-rw-r--r-- | roles/installer/ubuntu/usb/templates/grub.cfg.j2 | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/roles/installer/ubuntu/iso/templates/grub.cfg.j2 b/roles/installer/ubuntu/iso/templates/grub.cfg.j2 index f49d7f40..ccbc25eb 100644 --- a/roles/installer/ubuntu/iso/templates/grub.cfg.j2 +++ b/roles/installer/ubuntu/iso/templates/grub.cfg.j2 @@ -12,7 +12,7 @@ set timeout=10 set default=0 menuentry "automated installer for {{ inventory_hostname }}" { - set gfxpayload=keep - linux /casper/vmlinuz quiet nopersistent autoinstall "ds=nocloud;s=/cdrom/autoinstall/{{ inventory_hostname }}/" {{ (install_cooked.kernel_cmdline | default([])) | join(' ') }} - initrd /casper/initrd + set gfxpayload=keep + linux /casper/vmlinuz quiet nopersistent autoinstall "ds=nocloud;s=/cdrom/autoinstall/{{ inventory_hostname }}/" {{ (install_cooked.kernel_cmdline | default([])) | join(' ') }} + initrd /casper/initrd } diff --git a/roles/installer/ubuntu/usb/templates/grub.cfg.j2 b/roles/installer/ubuntu/usb/templates/grub.cfg.j2 index 1f97113a..adeb5672 100644 --- a/roles/installer/ubuntu/usb/templates/grub.cfg.j2 +++ b/roles/installer/ubuntu/usb/templates/grub.cfg.j2 @@ -15,8 +15,8 @@ set default=0 {% for host in ansible_play_hosts_all %} menuentry "automated installer for {{ host }}" { - set gfxpayload=keep - linux /casper/vmlinuz quiet nopersistent autoinstall "ds=nocloud;s=/cdrom/autoinstall/{{ host }}/" {{ (hostvars[host].install_cooked.kernel_cmdline | default([])) | join(' ') }} - initrd /casper/initrd + set gfxpayload=keep + linux /casper/vmlinuz quiet nopersistent autoinstall "ds=nocloud;s=/cdrom/autoinstall/{{ host }}/" {{ (hostvars[host].install_cooked.kernel_cmdline | default([])) | join(' ') }} + initrd /casper/initrd } {% endfor %} |