From ab32b75aba3266c0fbf22e383f8d089d27e2750c Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 22 Jun 2018 13:51:03 -0700 Subject: [PATCH] Note bug related to 'console=tty0 quiet' workaround Signed-off-by: Adam Williamson --- tests/_do_install_and_reboot.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/_do_install_and_reboot.pm b/tests/_do_install_and_reboot.pm index 1c1a443f..cda1909d 100644 --- a/tests/_do_install_and_reboot.pm +++ b/tests/_do_install_and_reboot.pm @@ -97,7 +97,7 @@ sub run { $self->root_console(); # stick 'console=tty0' on the end of GRUB_CMDLINE_LINUX in # the grub defaults file, and 'quiet' so we don't get kernel - # messages, which screws up some needles + # messages, which screws up some needles. RHBZ#1594402 assert_script_run 'sed -i -e "s,\(GRUB_CMDLINE_LINUX.*\)\",\1 console=tty0 quiet\",g" /mnt/sysimage/etc/default/grub'; # regenerate the bootloader config assert_script_run "chroot /mnt/sysimage grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg";