diff options
author | Christian Pointner <equinox@spreadspace.org> | 2020-08-19 01:29:36 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2020-08-19 01:29:36 +0200 |
commit | f399928637cc2f12bf7cb06a4ea107bc0a88e5db (patch) | |
tree | 320bef2c5f0a60caf1c3fd05bac9f06ce1c7708c /roles/installer/debian | |
parent | add hacky workaround for zfs-mount-generator bug (diff) |
add host ch-prometheus
Diffstat (limited to 'roles/installer/debian')
-rw-r--r-- | roles/installer/debian/iso/templates/isolinux.cfg.j2 | 2 | ||||
-rw-r--r-- | roles/installer/debian/usb/templates/syslinux.cfg.j2 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/roles/installer/debian/iso/templates/isolinux.cfg.j2 b/roles/installer/debian/iso/templates/isolinux.cfg.j2 index 34d42aa2..3656b435 100644 --- a/roles/installer/debian/iso/templates/isolinux.cfg.j2 +++ b/roles/installer/debian/iso/templates/isolinux.cfg.j2 @@ -12,4 +12,4 @@ SAY ** LABEL {{ install_hostname }} KERNEL linux INITRD initrd.gz - APPEND install {{ (hostvars[install_hostname].install_cooked.kernel_cmdline | default([])) | join(' ') }} + APPEND install fb=false {{ (hostvars[install_hostname].install_cooked.kernel_cmdline | default([])) | join(' ') }} diff --git a/roles/installer/debian/usb/templates/syslinux.cfg.j2 b/roles/installer/debian/usb/templates/syslinux.cfg.j2 index ea4b866c..f26fb45f 100644 --- a/roles/installer/debian/usb/templates/syslinux.cfg.j2 +++ b/roles/installer/debian/usb/templates/syslinux.cfg.j2 @@ -21,5 +21,5 @@ LABEL {{ host }} MENU LABEL automatic installer for {{ host }} KERNEL {{ syslinux_base_path }}linux INITRD {{ syslinux_base_path }}initrd.{{ host }}.gz - APPEND install {{ (hostvars[host].install_cooked.kernel_cmdline | default([])) | join(' ') }} + APPEND install fb=false {{ (hostvars[host].install_cooked.kernel_cmdline | default([])) | join(' ') }} {% endfor %} |