Skip to content

Commit

Permalink
Merge pull request #19934 from hjluo/fix_supp_fips
Browse files Browse the repository at this point in the history
Fix fips-certified for sles15sp4 support image
  • Loading branch information
lemon-suse authored Aug 13, 2024
2 parents 1df4d5f + 3fcf199 commit 86569fc
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ exit 0
<pattern>enhanced_base</pattern>
<pattern>enhanced_base-32bit</pattern>
<pattern>file_server</pattern>
<pattern>fips</pattern>
<pattern>fonts</pattern>
<pattern>gateway_server</pattern>
<pattern>kvm_server</pattern>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ exit 0
<pattern>documentation</pattern>
<pattern>enhanced_base</pattern>
<pattern>file_server</pattern>
<pattern>fips</pattern>
<pattern>fonts</pattern>
<pattern>gateway_server</pattern>
<pattern>hwcrypto</pattern>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ exit 0
<pattern>enhanced_base</pattern>
<pattern>enhanced_base-32bit</pattern>
<pattern>file_server</pattern>
<pattern>fips</pattern>
<pattern>fonts</pattern>
<pattern>gateway_server</pattern>
<pattern>kvm_server</pattern>
Expand Down
2 changes: 2 additions & 0 deletions lib/utils.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2487,6 +2487,8 @@ sub install_patterns {
next if (($pt =~ /wsl_base|wsl_gui|wsl_systemd/) && check_var('PATTERNS', 'all'));
# if pattern is common-criteria and PATTERNS is all, skip, poo#73645
next if (($pt =~ /common-criteria/) && check_var('PATTERNS', 'all'));
# if pattern is fips or fips-certified and PATTERNS is all, skip
next if (($pt =~ /fips|fips-certified/) && check_var('PATTERNS', 'all'));
zypper_call("in -t pattern $pt", timeout => 1800);
}
}
Expand Down

0 comments on commit 86569fc

Please sign in to comment.