From 390cef6b9716dd980998ef71da211f240676e74b Mon Sep 17 00:00:00 2001 From: John McCrae Date: Mon, 22 Apr 2024 13:46:53 -0700 Subject: [PATCH] Got it! have to adjust FIPS now, moving FIPS support back to the main openssl.rb file for v3 and laster in onnibus-software Signed-off-by: John McCrae --- config/software/openssl.rb | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/config/software/openssl.rb b/config/software/openssl.rb index 853bed8bf..484099fd8 100644 --- a/config/software/openssl.rb +++ b/config/software/openssl.rb @@ -210,13 +210,17 @@ command "sudo /usr/sbin/slibclean", env: env end - # if version.start_with?("3") && fips_mode? - # make "install_sw install_ssldirs install_fips", env: env - # else - # make "install", env: env - # end + if version.start_with?("3") && fips_mode? + make "install_sw install_ssldirs install_fips", env: env + else + make "install", env: env + end + + if windows? + command "find / -name openssl.exe" + end - make "install", env: env + # make "install", env: env if version.start_with?("3") && fips_mode? # running the make install_fips step to install the FIPS provider