File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -527,6 +527,16 @@ def test_rhel_pxe_provisioning_fips_enabled(
527527
528528 :Verifies: SAT-26071
529529 """
530+ # Skip RHEL7 UEFI test due to known issue SAT-41340
531+ if (
532+ is_open ('SAT-41340' )
533+ and pxe_loader .vm_firmware in ['uefi' ]
534+ and module_provisioning_rhel_content .os .major == '7'
535+ ):
536+ pytest .skip (
537+ f"Test not supported for rhel{ module_provisioning_rhel_content .os .major } { pxe_loader .vm_firmware } firmware"
538+ )
539+
530540 sat = module_provisioning_sat .sat
531541 host_mac_addr = provisioning_host .provisioning_nic_mac_addr
532542 # Verify password hashing algorithm SHA512 is set in OS used for provisioning
@@ -602,7 +612,7 @@ def test_rhel_pxe_provisioning_fips_enabled(
602612
603613 # Verify FIPS is enabled on host after provisioning is completed successfully
604614 result = provisioning_host .execute ('cat /proc/sys/crypto/fips_enabled' )
605- assert ( 0 if is_open ( 'SAT-20386' ) else 1 ) == int (result .stdout )
615+ assert int (result .stdout ) == 1
606616
607617 # Run a command on the host using REX to verify that Satellite's SSH key is present on the host
608618 # Add workaround for SAT-32007 and SAT-32006
You can’t perform that action at this time.
0 commit comments