1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-12-07 17:36:00 +00:00

Unset variable after use

This commit is contained in:
Lukáš Růžička 2025-10-30 12:27:12 +01:00
parent 17064ebd95
commit 26a473393b

View File

@ -289,6 +289,10 @@ sub run {
# show by now it never will, so we'll just wait for the
# hub to show up.
assert_screen ["anaconda_main_hub", "anaconda_webui_installmethod"], 900;
# Unset the USBBOOT variable as we have already booted.
if (get_var('USBBOOT')) {
set_var('USBBOOT', undef, reload_needles => 1);
}
_handle_incomplete_hub;
}
}