Merge pull request #105 from rocky-linux/9.0_release_fixes
9.0 release fixes
@ -368,9 +368,7 @@ sub get_full_repo {
|
|||||||
if ($repourl !~ m/^(nfs|hd:)/) {
|
if ($repourl !~ m/^(nfs|hd:)/) {
|
||||||
# Everything variant doesn't exist for modular composes atm,
|
# Everything variant doesn't exist for modular composes atm,
|
||||||
# only Server
|
# only Server
|
||||||
my $variant = 'Everything';
|
$repourl .= "/".get_var("ARCH")."/os";
|
||||||
$variant = 'Server' if (get_var("MODULAR"));
|
|
||||||
$repourl .= "/${variant}/".get_var("ARCH")."/os";
|
|
||||||
}
|
}
|
||||||
return $repourl;
|
return $repourl;
|
||||||
}
|
}
|
||||||
|
31
lib/utils.pm
@ -5,9 +5,10 @@ use strict;
|
|||||||
use base 'Exporter';
|
use base 'Exporter';
|
||||||
use Exporter;
|
use Exporter;
|
||||||
|
|
||||||
|
use feature "switch";
|
||||||
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 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 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 get_release_number get_version_major get_code_name 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.
|
||||||
@ -62,6 +63,28 @@ sub get_release_number {
|
|||||||
return $version
|
return $version
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub get_version_major {
|
||||||
|
my $version = get_var('VERSION');
|
||||||
|
my $version_major = substr($version, 0, index($version, q/./));
|
||||||
|
return $version_major
|
||||||
|
}
|
||||||
|
|
||||||
|
sub get_code_name {
|
||||||
|
my $code_name = 'Green Obsidian';
|
||||||
|
my $version = get_var('VERSION');
|
||||||
|
my $version_major = get_version_major;
|
||||||
|
|
||||||
|
given($version_major){
|
||||||
|
when ('9') { $code_name = 'Blue Onyx'; }
|
||||||
|
when ('10') { $code_name = 'Smoky Quartz'; }
|
||||||
|
when ('11') { $code_name = 'Lavender Calcite'; }
|
||||||
|
default{
|
||||||
|
$code_name = 'Green Obsidian';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $code_name;
|
||||||
|
}
|
||||||
|
|
||||||
# Figure out what tty the desktop is on, switch to it. Assumes we're
|
# Figure out what tty the desktop is on, switch to it. Assumes we're
|
||||||
# at a root console
|
# at a root console
|
||||||
sub desktop_vt {
|
sub desktop_vt {
|
||||||
@ -588,7 +611,8 @@ sub _repo_setup_updates {
|
|||||||
assert_script_run 'printf "[advisory]\nname=Advisory repo\nbaseurl=file:///opt/update_repo\nenabled=1\nmetadata_expire=3600\ngpgcheck=0" > /etc/yum.repos.d/advisory.repo';
|
assert_script_run 'printf "[advisory]\nname=Advisory repo\nbaseurl=file:///opt/update_repo\nenabled=1\nmetadata_expire=3600\ngpgcheck=0" > /etc/yum.repos.d/advisory.repo';
|
||||||
# run an update now (except for upgrade tests)
|
# run an update now (except for upgrade tests)
|
||||||
my $relnum = get_release_number;
|
my $relnum = get_release_number;
|
||||||
if ($relnum > 33) {
|
my $version_major = get_version_major;
|
||||||
|
if (($relnum > 33) || ($version_major > 8)) {
|
||||||
# FIXME workaround https://bugzilla.redhat.com/show_bug.cgi?id=1931034
|
# FIXME workaround https://bugzilla.redhat.com/show_bug.cgi?id=1931034
|
||||||
# drop after https://github.com/systemd/systemd/pull/18915 is merged
|
# drop after https://github.com/systemd/systemd/pull/18915 is merged
|
||||||
# and stable
|
# and stable
|
||||||
@ -936,7 +960,8 @@ sub start_with_launcher {
|
|||||||
# but only after we hit 'down' twice to get into it.
|
# but only after we hit 'down' twice to get into it.
|
||||||
# On F32 and earlier, it just scrolls vertically
|
# On F32 and earlier, it just scrolls vertically
|
||||||
my $relnum = get_release_number;
|
my $relnum = get_release_number;
|
||||||
if ($relnum > 32) {
|
my $version_major = get_version_major;
|
||||||
|
if (($relnum > 32) || ($version_major > 8)) {
|
||||||
send_key 'down';
|
send_key 'down';
|
||||||
send_key 'down';
|
send_key 'down';
|
||||||
send_key_until_needlematch($launcher, 'right', 5, 6);
|
send_key_until_needlematch($launcher, 'right', 5, 6);
|
||||||
|
16
main.pm
@ -249,12 +249,19 @@ sub _load_early_postinstall_tests {
|
|||||||
|
|
||||||
# For now, there's no possibility to get a graphical desktop on
|
# For now, there's no possibility to get a graphical desktop on
|
||||||
# Modular composes, so short-circuit here for those
|
# Modular composes, so short-circuit here for those
|
||||||
if (get_var("MODULAR")) {
|
# Rocky has no such thing as MODULAR composes and we make use of PACKAGESET
|
||||||
|
# to select different Environments from the boot and/or DVD ISOs.
|
||||||
|
# DO NOT specify DESKTOP for minimal, server-product or virtualization-host
|
||||||
|
my $package_set = get_var("PACKAGE_SET");
|
||||||
|
if (!get_var("DESKTOP") || get_var("DESKTOP") eq "false" ||
|
||||||
|
$package_set eq "minimal" || $package_set eq "server" ||
|
||||||
|
$package_set eq "virtualization-host") {
|
||||||
_load_instance("tests/_console_wait_login", $instance);
|
_load_instance("tests/_console_wait_login", $instance);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Appropriate login method for install type
|
# Explicitly setting DESKTOP="kde" or DESKTOP="gnome" should ALWAYS trigger
|
||||||
|
# graphical login...
|
||||||
if (get_var("DESKTOP")) {
|
if (get_var("DESKTOP")) {
|
||||||
_load_instance("tests/_graphical_wait_login", $instance);
|
_load_instance("tests/_graphical_wait_login", $instance);
|
||||||
}
|
}
|
||||||
@ -284,6 +291,11 @@ sub load_postinstall_tests() {
|
|||||||
# load the early tests
|
# load the early tests
|
||||||
_load_early_postinstall_tests();
|
_load_early_postinstall_tests();
|
||||||
|
|
||||||
|
## enable staging repos if requested
|
||||||
|
#if (get_var("DNF_CONTENTDIR")) {
|
||||||
|
# autotest::loadtest "tests/_staging_repos_enable.pm";
|
||||||
|
#}
|
||||||
|
|
||||||
# do standard post-install static network config if the var is set
|
# do standard post-install static network config if the var is set
|
||||||
# and this is not an upgrade test (this is done elsewhere in the
|
# and this is not an upgrade test (this is done elsewhere in the
|
||||||
# upgrade workflow)
|
# upgrade workflow)
|
||||||
|
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 35,
|
||||||
|
"xpos": 9,
|
||||||
|
"width": 384,
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 126
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"anaconda_help_create_user"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 77 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 21,
|
||||||
|
"xpos": 38,
|
||||||
|
"width": 195,
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 102
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"anaconda_help_language_support"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 94 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 292,
|
||||||
|
"xpos": 21,
|
||||||
|
"width": 400,
|
||||||
|
"height": 20
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"anaconda_help_localization_link"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 36 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 35,
|
||||||
|
"width": 454,
|
||||||
|
"xpos": 8,
|
||||||
|
"ypos": 125,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"anaconda_help_root_password"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 83 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 36,
|
||||||
|
"width": 488,
|
||||||
|
"xpos": 7,
|
||||||
|
"ypos": 125,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"anaconda_help_select_packages"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 111 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"ypos": 263,
|
||||||
|
"type": "match",
|
||||||
|
"width": 225,
|
||||||
|
"xpos": 38,
|
||||||
|
"height": 20
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"anaconda_help_time_date"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda/help/rocky-anaconda_help_time_date-20220627.png
Normal file
After Width: | Height: | Size: 94 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"width": 144,
|
||||||
|
"xpos": 3,
|
||||||
|
"ypos": 0,
|
||||||
|
"type": "match",
|
||||||
|
"height": 764
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"leftbar_generic"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 58 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"width": 144,
|
||||||
|
"height": 764,
|
||||||
|
"ypos": 4,
|
||||||
|
"type": "match",
|
||||||
|
"xpos": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"leftbar_generic"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 197 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"width": 156,
|
||||||
|
"xpos": 0,
|
||||||
|
"ypos": 0,
|
||||||
|
"height": 766,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"leftbar_server"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 58 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"width": 531,
|
||||||
|
"height": 32,
|
||||||
|
"xpos": 237,
|
||||||
|
"ypos": 31,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"topbar_generic"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 46 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"width": 480,
|
||||||
|
"height": 32,
|
||||||
|
"xpos": 240,
|
||||||
|
"ypos": 31,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"topbar_generic"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 158 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 511,
|
||||||
|
"xpos": 926,
|
||||||
|
"height": 34,
|
||||||
|
"width": 90
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_install_destination_delete_all_btn_selected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 49 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 616,
|
||||||
|
"width": 124,
|
||||||
|
"xpos": 892,
|
||||||
|
"height": 37
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_install_destination_reclaim_space_btn_selected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 46 KiB |
@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 638,
|
||||||
|
"width": 358,
|
||||||
|
"xpos": 664,
|
||||||
|
"height": 20
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"xpos": 858,
|
||||||
|
"height": 21,
|
||||||
|
"width": 144,
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 696
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-french",
|
||||||
|
"anaconda_install_done"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 26 KiB |
@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"ypos": 633,
|
||||||
|
"type": "match",
|
||||||
|
"width": 305,
|
||||||
|
"height": 14,
|
||||||
|
"xpos": 706
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ypos": 697,
|
||||||
|
"type": "match",
|
||||||
|
"width": 105,
|
||||||
|
"height": 14,
|
||||||
|
"xpos": 875
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-japanese",
|
||||||
|
"anaconda_install_done"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 38 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 28,
|
||||||
|
"width": 141,
|
||||||
|
"xpos": 398,
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 102
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"anaconda_select_install_lang"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda/lang_select/rocky-install_lang-20220617.png
Normal file
After Width: | Height: | Size: 62 KiB |
@ -0,0 +1,31 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 33,
|
||||||
|
"ypos": 415,
|
||||||
|
"type": "match",
|
||||||
|
"width": 33,
|
||||||
|
"xpos": 721
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"height": 34,
|
||||||
|
"xpos": 244,
|
||||||
|
"width": 41,
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 205
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"width": 34,
|
||||||
|
"xpos": 246,
|
||||||
|
"ypos": 342,
|
||||||
|
"type": "match",
|
||||||
|
"height": 37
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_main_hub"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/anaconda/main_hub/rocky-anaconda_main_hub-20220612.png
Normal file
After Width: | Height: | Size: 58 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 20,
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 11,
|
||||||
|
"xpos": 767,
|
||||||
|
"width": 115
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"version_9_ident"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 59 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"xpos": 183,
|
||||||
|
"height": 18,
|
||||||
|
"width": 122,
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 364
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-arabic",
|
||||||
|
"anaconda_network_connected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 57 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"ypos": 364,
|
||||||
|
"type": "match",
|
||||||
|
"width": 136,
|
||||||
|
"height": 18,
|
||||||
|
"xpos": 737
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-french",
|
||||||
|
"anaconda_network_connected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 59 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 20,
|
||||||
|
"xpos": 734,
|
||||||
|
"width": 70,
|
||||||
|
"ypos": 365,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-japanese",
|
||||||
|
"anaconda_network_connected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 79 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 18,
|
||||||
|
"ypos": 364,
|
||||||
|
"type": "match",
|
||||||
|
"width": 79,
|
||||||
|
"xpos": 719
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"anaconda_network_connected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 58 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 18,
|
||||||
|
"xpos": 733,
|
||||||
|
"width": 177,
|
||||||
|
"ypos": 364,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-russian",
|
||||||
|
"anaconda_network_connected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 62 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 215,
|
||||||
|
"xpos": 551,
|
||||||
|
"height": 17,
|
||||||
|
"width": 119
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-arabic",
|
||||||
|
"anaconda_workstation_highlighted"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 85 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"ypos": 216,
|
||||||
|
"type": "match",
|
||||||
|
"width": 454,
|
||||||
|
"height": 14,
|
||||||
|
"xpos": 541
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-arabic",
|
||||||
|
"anaconda_workstation_selected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 85 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 216,
|
||||||
|
"xpos": 47,
|
||||||
|
"height": 14,
|
||||||
|
"width": 119
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-french",
|
||||||
|
"anaconda_workstation_highlighted"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 87 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 13,
|
||||||
|
"xpos": 31,
|
||||||
|
"width": 145,
|
||||||
|
"ypos": 216,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-french",
|
||||||
|
"anaconda_workstation_selected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 87 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 19,
|
||||||
|
"xpos": 44,
|
||||||
|
"width": 128,
|
||||||
|
"ypos": 258,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-japanese",
|
||||||
|
"anaconda_workstation_highlighted"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 115 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 257,
|
||||||
|
"width": 150,
|
||||||
|
"xpos": 26,
|
||||||
|
"height": 19
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-japanese",
|
||||||
|
"anaconda_workstation_selected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 115 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"type": "match",
|
||||||
|
"height": 34,
|
||||||
|
"width": 243,
|
||||||
|
"ypos": 137,
|
||||||
|
"xpos": 26
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_graphical-server_selected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 85 KiB |
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"width": 99,
|
||||||
|
"xpos": 49,
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 253,
|
||||||
|
"height": 16
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"ENV-FLAVOR-server",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_minimal_highlighted"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 83 KiB |
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"xpos": 30,
|
||||||
|
"width": 114,
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 253,
|
||||||
|
"height": 16
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"ENV-FLAVOR-server",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_minimal_selected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 83 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"width": 49,
|
||||||
|
"height": 15,
|
||||||
|
"type": "match",
|
||||||
|
"xpos": 46,
|
||||||
|
"ypos": 177
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_server_highlighted"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 84 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 32,
|
||||||
|
"type": "match",
|
||||||
|
"width": 246,
|
||||||
|
"ypos": 177,
|
||||||
|
"xpos": 29
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_server_selected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 84 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"xpos": 28,
|
||||||
|
"ypos": 329,
|
||||||
|
"width": 177,
|
||||||
|
"type": "match",
|
||||||
|
"height": 32
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_virtualization-host_highlighted"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 84 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"ypos": 329,
|
||||||
|
"xpos": 29,
|
||||||
|
"height": 31,
|
||||||
|
"type": "match",
|
||||||
|
"width": 181
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_virtualization-host_selected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 84 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"ypos": 215,
|
||||||
|
"xpos": 27,
|
||||||
|
"width": 246,
|
||||||
|
"height": 33,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_workstation_highlighted"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 84 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"ypos": 215,
|
||||||
|
"xpos": 29,
|
||||||
|
"width": 290,
|
||||||
|
"height": 31,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_workstation_selected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 84 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"ypos": 253,
|
||||||
|
"type": "match",
|
||||||
|
"height": 14,
|
||||||
|
"xpos": 46,
|
||||||
|
"width": 125
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-russian",
|
||||||
|
"anaconda_workstation_highlighted"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 87 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 252,
|
||||||
|
"xpos": 28,
|
||||||
|
"height": 19,
|
||||||
|
"width": 152
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-russian",
|
||||||
|
"anaconda_workstation_selected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 87 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"width": 109,
|
||||||
|
"height": 20,
|
||||||
|
"xpos": 547,
|
||||||
|
"ypos": 463,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_custom_btn_add_mountpoint"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 50 KiB |
@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"click_point": {
|
||||||
|
"ypos": 12,
|
||||||
|
"xpos": 131
|
||||||
|
},
|
||||||
|
"width": 131,
|
||||||
|
"height": 22,
|
||||||
|
"xpos": 352,
|
||||||
|
"ypos": 367,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_custom_mountpoint"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 49 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"width": 37,
|
||||||
|
"xpos": 33,
|
||||||
|
"height": 33,
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 619
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_custom_part_add"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 43 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 312,
|
||||||
|
"xpos": 507,
|
||||||
|
"height": 14,
|
||||||
|
"width": 50
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_custom_part_devicetype_lvmlv"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 58 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"width": 37,
|
||||||
|
"height": 16,
|
||||||
|
"xpos": 507,
|
||||||
|
"ypos": 340,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_custom_part_devicetype_raid"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 56 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 280,
|
||||||
|
"width": 76,
|
||||||
|
"xpos": 502,
|
||||||
|
"height": 27
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_custom_part_devicetype_selected"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 58 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"xpos": 506,
|
||||||
|
"height": 15,
|
||||||
|
"width": 121,
|
||||||
|
"type": "match",
|
||||||
|
"ypos": 312
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_custom_part_devicetype_standard_partition"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 50 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"ypos": 368,
|
||||||
|
"type": "match",
|
||||||
|
"width": 123,
|
||||||
|
"height": 17,
|
||||||
|
"xpos": 511
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_custom_part_fs_efi_filesystem_selected"
|
||||||
|
]
|
||||||
|
}
|