diff options
author | Christian Pointner <equinox@spreadspace.org> | 2020-09-04 19:02:08 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2020-09-04 19:02:08 +0200 |
commit | 0581b389e4d53d79f420fff613b43e7a0841047c (patch) | |
tree | 8629c726570cb4a777b981504196290309cec2a6 /roles/installer/debian | |
parent | use human_to_bytes for zfs ARC size limits (diff) |
preseed/ubuntu: removing splash from kernel command-line is sufficient
Diffstat (limited to 'roles/installer/debian')
3 files changed, 0 insertions, 3 deletions
diff --git a/roles/installer/debian/preseed/templates/preseed_ubuntu-bionic.cfg.j2 b/roles/installer/debian/preseed/templates/preseed_ubuntu-bionic.cfg.j2 index 4619881d..7a21c082 100644 --- a/roles/installer/debian/preseed/templates/preseed_ubuntu-bionic.cfg.j2 +++ b/roles/installer/debian/preseed/templates/preseed_ubuntu-bionic.cfg.j2 @@ -77,7 +77,6 @@ d-i preseed/late_command string \ in-target bash -c "swapoff -a; sed -e '/^\/swapfile/d' -i /etc/fstab; rm -f /swapfile"; \ in-target bash -c "apt-get update -q && apt-get full-upgrade -y -q"; \ in-target bash -c "sed -e 's/^\(GRUB_CMDLINE_LINUX_DEFAULT=.*\)splash/\1/' -i /etc/default/grub"; \ - in-target bash -c "sed -e 's/^vt_handoff=.*$/vt_handoff=\"0\"/' -i /etc/grub.d/10_linux"; \ in-target bash -c "update-grub"; \ {% if preseed_virtual_machine %} in-target bash -c "apt-get install -y -q --no-install-recommends linux-image-virtual"; \ diff --git a/roles/installer/debian/preseed/templates/preseed_ubuntu-focal.cfg.j2 b/roles/installer/debian/preseed/templates/preseed_ubuntu-focal.cfg.j2 index 20532934..9280e3ca 100644 --- a/roles/installer/debian/preseed/templates/preseed_ubuntu-focal.cfg.j2 +++ b/roles/installer/debian/preseed/templates/preseed_ubuntu-focal.cfg.j2 @@ -77,7 +77,6 @@ d-i preseed/late_command string \ in-target bash -c "swapoff -a; sed -e '/^\/swapfile/d' -i /etc/fstab; rm -f /swapfile"; \ in-target bash -c "apt-get update -q && apt-get full-upgrade -y -q"; \ in-target bash -c "sed -e 's/^\(GRUB_CMDLINE_LINUX_DEFAULT=.*\)splash/\1/' -i /etc/default/grub"; \ - in-target bash -c "sed -e 's/^vt_handoff=.*$/vt_handoff=\"0\"/' -i /etc/grub.d/10_linux"; \ in-target bash -c "update-grub"; \ {% if preseed_virtual_machine %} in-target bash -c "apt-get install -y -q --no-install-recommends linux-image-virtual"; \ diff --git a/roles/installer/debian/preseed/templates/preseed_ubuntu-xenial.cfg.j2 b/roles/installer/debian/preseed/templates/preseed_ubuntu-xenial.cfg.j2 index 62904303..758cf961 100644 --- a/roles/installer/debian/preseed/templates/preseed_ubuntu-xenial.cfg.j2 +++ b/roles/installer/debian/preseed/templates/preseed_ubuntu-xenial.cfg.j2 @@ -73,7 +73,6 @@ d-i preseed/late_command string \ lvremove -f {{ hostvars[install_hostname].host_name }}/dummy; \ in-target bash -c "apt-get update -q && apt-get full-upgrade -y -q"; \ in-target bash -c "sed -e 's/^\(GRUB_CMDLINE_LINUX_DEFAULT=.*\)splash/\1/' -i /etc/default/grub"; \ - in-target bash -c "sed -e 's/^vt_handoff=.*$/vt_handoff=\"0\"/' -i /etc/grub.d/10_linux"; \ in-target bash -c "update-grub"; \ {% if preseed_virtual_machine %} in-target bash -c "apt-get install -y -q --no-install-recommends linux-image-virtual"; \ |