mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-22 13:11:26 +00:00
...yup, I durn goofed. Share properly, kids!
Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
4489a6cb3f
commit
81d6db802f
@ -7,7 +7,7 @@ use Exporter;
|
|||||||
|
|
||||||
use lockapi;
|
use lockapi;
|
||||||
use testapi;
|
use testapi;
|
||||||
our @EXPORT = qw/run_with_error_check type_safely type_very_safely desktop_vt boot_to_login_screen console_login console_switch_layout desktop_switch_layout console_loadkeys_us do_bootloader boot_decrypt check_release menu_launch_type repo_setup setup_workaround_repo cleanup_workaround_repo console_initial_setup gnome_initial_setup anaconda_create_user check_desktop download_modularity_tests quit_firefox advisory_get_installed_packages advisory_check_nonmatching_packages start_with_launcher quit_with_shortcut lo_dismiss_tip disable_firefox_studies select_rescue_mode copy_devcdrom_as_isofile bypass_1691487 get_release_number check_left_bar check_top_bar check_prerelease check_version spell_version_number _assert_and_click is_branched rec_log click_unwanted_notifications repos_mirrorlist register_application get_registered_applications solidify_wallpaper/;
|
our @EXPORT = qw/run_with_error_check type_safely type_very_safely desktop_vt boot_to_login_screen console_login console_switch_layout desktop_switch_layout console_loadkeys_us do_bootloader boot_decrypt check_release menu_launch_type repo_setup setup_workaround_repo cleanup_workaround_repo console_initial_setup handle_welcome_screen gnome_initial_setup anaconda_create_user check_desktop download_modularity_tests quit_firefox advisory_get_installed_packages advisory_check_nonmatching_packages start_with_launcher quit_with_shortcut lo_dismiss_tip disable_firefox_studies select_rescue_mode copy_devcdrom_as_isofile bypass_1691487 get_release_number check_left_bar check_top_bar check_prerelease check_version spell_version_number _assert_and_click is_branched rec_log click_unwanted_notifications repos_mirrorlist register_application get_registered_applications solidify_wallpaper/;
|
||||||
|
|
||||||
# We introduce this global variable to hold the list of applications that have
|
# We introduce this global variable to hold the list of applications that have
|
||||||
# registered during the apps_startstop_test when they have sucessfully run.
|
# registered during the apps_startstop_test when they have sucessfully run.
|
||||||
@ -659,7 +659,7 @@ sub console_initial_setup {
|
|||||||
type_string "c\n"; # continue
|
type_string "c\n"; # continue
|
||||||
}
|
}
|
||||||
|
|
||||||
sub _handle_welcome_screen {
|
sub handle_welcome_screen {
|
||||||
# handle the 'welcome' screen on GNOME. shared in a few places
|
# handle the 'welcome' screen on GNOME. shared in a few places
|
||||||
if (check_screen "getting_started", 45) {
|
if (check_screen "getting_started", 45) {
|
||||||
send_key "alt-f4";
|
send_key "alt-f4";
|
||||||
@ -774,7 +774,7 @@ sub gnome_initial_setup {
|
|||||||
send_key "ret";
|
send_key "ret";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
_handle_welcome_screen;
|
handle_welcome_screen;
|
||||||
}
|
}
|
||||||
# don't do it again on second load
|
# don't do it again on second load
|
||||||
set_var("_setup_done", 1);
|
set_var("_setup_done", 1);
|
||||||
|
@ -87,7 +87,7 @@ sub run {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
# ...from GNOME 40 on, we just get a "Welcome" tour
|
# ...from GNOME 40 on, we just get a "Welcome" tour
|
||||||
_handle_welcome_screen;
|
handle_welcome_screen;
|
||||||
# protect against expecting it again
|
# protect against expecting it again
|
||||||
set_var("_setup_done");
|
set_var("_setup_done");
|
||||||
}
|
}
|
||||||
@ -96,7 +96,7 @@ sub run {
|
|||||||
if (get_var("DESKTOP") eq 'gnome' && get_var("INSTALL_NO_USER")) {
|
if (get_var("DESKTOP") eq 'gnome' && get_var("INSTALL_NO_USER")) {
|
||||||
# handle welcome screen if we didn't do it above (holy flow
|
# handle welcome screen if we didn't do it above (holy flow
|
||||||
# control, Batman!)
|
# control, Batman!)
|
||||||
_handle_welcome_screen unless (get_var("_setup_done"));
|
handle_welcome_screen unless (get_var("_setup_done"));
|
||||||
# if this was an image deployment, we also need to create
|
# if this was an image deployment, we also need to create
|
||||||
# root user now, for subsequent tests to work
|
# root user now, for subsequent tests to work
|
||||||
if (get_var("IMAGE_DEPLOY")) {
|
if (get_var("IMAGE_DEPLOY")) {
|
||||||
|
Loading…
Reference in New Issue
Block a user