Drop all RHBZ #1663040 workarounds, should be fixed now

In Fedora-Rawhide-20190117.n.0 #1663040 should be fixed, so drop
all workarounds for it.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2019-01-17 08:35:30 -08:00
parent 2c7562eea4
commit 510662c1ec
2 changed files with 1 additions and 14 deletions

View File

@ -4421,9 +4421,7 @@
{ key => "LIVE", value => "1" },
{ key => "PACKAGE_SET", value => "default" },
{ key => "DESKTOP", value => "gnome" },
{ key => "TEST_TARGET", value => "ISO" },
# FIXME this is a workaround for RHBZ #1663040 / #1666083
{ key => "GRUB", value => "enforcing=0" }
{ key => "TEST_TARGET", value => "ISO" }
],
version => "*",
},

View File

@ -49,17 +49,6 @@ sub run {
} else {
# on lives, we have to explicitly launch anaconda
if (get_var('LIVE')) {
if (get_var('DESKTOP') eq 'gnome') {
# workaround RHBZ #1663040 if necessary
assert_screen "live_start_anaconda_icon", 300;
$self->root_console(timeout=>30);
unless (script_run "systemctl is-failed systemd-hostnamed.service") {
record_soft_failure "systemd-hostnamed.service failed - likely RHBZ #1663040";
assert_script_run "setenforce Permissive";
assert_script_run "systemctl restart systemd-hostnamed.service";
}
desktop_vt;
}
assert_and_click "live_start_anaconda_icon", '', 300;
}
my $language = get_var('LANGUAGE') || 'english';