diff --git a/needles/anaconda/partitioning/rocky-disk_custom_resize_lvm-device_root_resized_11_5-20240727.json b/needles/anaconda/partitioning/rocky-disk_custom_resize_lvm-device_root_resized_11_5-20240727.json new file mode 100644 index 00000000..9f950866 --- /dev/null +++ b/needles/anaconda/partitioning/rocky-disk_custom_resize_lvm-device_root_resized_11_5-20240727.json @@ -0,0 +1,16 @@ +{ + "area": [ + { + "ypos": 135, + "xpos": 374, + "height": 22, + "width": 74, + "type": "match" + } + ], + "properties": [], + "tags": [ + "ENV-DISTRI-rocky", + "device_root_resized_twelve" + ] +} \ No newline at end of file diff --git a/needles/anaconda/partitioning/rocky-disk_custom_resize_lvm-device_root_resized_11_5-20240727.png b/needles/anaconda/partitioning/rocky-disk_custom_resize_lvm-device_root_resized_11_5-20240727.png new file mode 100644 index 00000000..a0565de5 Binary files /dev/null and b/needles/anaconda/partitioning/rocky-disk_custom_resize_lvm-device_root_resized_11_5-20240727.png differ diff --git a/templates.fif.json b/templates.fif.json index 7d9f5fc3..6af042c3 100644 --- a/templates.fif.json +++ b/templates.fif.json @@ -645,6 +645,7 @@ "rocky-dvd-iso-s390x-*-s390x": 40, "rocky-dvd-iso-ppc64le-*-ppc64le": 40, "rocky-dvd-iso-aarch64-*-aarch64": 40, + "rocky-dvd-iso-x86_64-*-bios": 41, "rocky-dvd-iso-x86_64-*-uefi": 40 }, "settings": { @@ -961,6 +962,7 @@ "rocky-dvd-iso-s390x-*-s390x": 40, "rocky-dvd-iso-ppc64le-*-ppc64le": 40, "rocky-dvd-iso-aarch64-*-aarch64": 40, + "rocky-dvd-iso-x86_64-*-bios": 41, "rocky-dvd-iso-x86_64-*-uefi": 40 }, "settings": { @@ -1241,7 +1243,8 @@ "profiles": { "rocky-universal-s390x-*-s390x": 40, "rocky-universal-ppc64le-*-ppc64le": 40, - "rocky-universal-aarch64-*-aarch64": 40 + "rocky-universal-aarch64-*-aarch64": 40, + "rocky-universal-x86_64-*-uefi": 40 }, "settings": { "HDD_1": "disk_shrink_ext4.img", @@ -1255,7 +1258,8 @@ "profiles": { "rocky-universal-s390x-*-s390x": 40, "rocky-universal-ppc64le-*-ppc64le": 40, - "rocky-universal-aarch64-*-aarch64": 40 + "rocky-universal-aarch64-*-aarch64": 40, + "rocky-universal-x86_64-*-uefi": 40 }, "settings": { "HDD_1": "disk_shrink_ntfs.img", diff --git a/tests/disk_custom_resize_lvm.pm b/tests/disk_custom_resize_lvm.pm index a78caa3e..6cc8e9dc 100644 --- a/tests/disk_custom_resize_lvm.pm +++ b/tests/disk_custom_resize_lvm.pm @@ -56,7 +56,7 @@ sub run { type_very_safely "/"; # Skip to the Size window send_key "tab"; - type_very_safely "12 GiB"; + type_very_safely "11.5 GiB"; # Reformat and update the partition assert_and_click "anaconda_part_device_reformat"; assert_and_click "anaconda_part_update_settings"; diff --git a/tests/disk_custom_resize_lvm_postinstall.pm b/tests/disk_custom_resize_lvm_postinstall.pm index 0c4fcef1..42863dff 100644 --- a/tests/disk_custom_resize_lvm_postinstall.pm +++ b/tests/disk_custom_resize_lvm_postinstall.pm @@ -5,9 +5,9 @@ use testapi; sub run { assert_screen "root_console"; # check that there is a root partition and that it has - # the correct size -> 11.9G + # the correct size -> 11.5G script_run "lsblk"; - assert_script_run "lsblk | grep root | grep '11.9G'"; + assert_script_run "lsblk | grep root | grep '11.5G'"; } sub test_flags { diff --git a/tests/uefi_postinstall.pm b/tests/uefi_postinstall.pm index 0ed19fad..5fe2445a 100644 --- a/tests/uefi_postinstall.pm +++ b/tests/uefi_postinstall.pm @@ -14,6 +14,7 @@ sub run { # this test shows if the system is booted with efi assert_script_run '[ -d /sys/firmware/efi/ ]'; # this test shows if the system is secure boot + script_run 'df;lsblk'; script_run 'mokutil --sb-state'; }