More fixing of the workaround...

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2019-01-04 13:55:31 -08:00
parent 42a38009eb
commit c6fac00698

View File

@ -53,12 +53,12 @@ sub run {
# workaround RHBZ #1663040 if necessary # workaround RHBZ #1663040 if necessary
assert_screen "live_start_anaconda_icon", 300; assert_screen "live_start_anaconda_icon", 300;
$self->root_console(timeout=>30); $self->root_console(timeout=>30);
unless (script_run "systemctl --is-failed systemd-hostnamed.service") { unless (script_run "systemctl is-failed systemd-hostnamed.service") {
record_soft_failure "systemd-hostnamed.service failed - likely RHBZ #1663040"; record_soft_failure "systemd-hostnamed.service failed - likely RHBZ #1663040";
assert_script_run "setenforce Permissive"; assert_script_run "setenforce Permissive";
assert_script_run "systemctl restart systemd-hostnamed.service"; assert_script_run "systemctl restart systemd-hostnamed.service";
desktop_vt;
} }
desktop_vt;
} }
assert_and_click "live_start_anaconda_icon", '', 300; assert_and_click "live_start_anaconda_icon", '', 300;
} }