Skip to content

Commit

Permalink
Merge pull request #1453 from chef/lcg/fix-openssl-version-check
Browse files Browse the repository at this point in the history
  • Loading branch information
lamont-granquist authored Oct 1, 2021
2 parents 0966668 + 5ba7964 commit a901ec2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/software/openssl.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright:: Chef Software Inc.
# Copyright:: Copyright (c) Chef Software Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -81,7 +81,7 @@
]

# https://www.openssl.org/blog/blog/2021/09/13/LetsEncryptRootCertExpire/
configure_args += [ "-DOPENSSL_TRUSTED_FIRST_DEFAULT" ] if version.satisfies?("> 1.0.2zb") && version.satisfies?("< 1.1.0")
configure_args += [ "-DOPENSSL_TRUSTED_FIRST_DEFAULT" ] if version.satisfies?(">= 1.0.2zb") && version.satisfies?("< 1.1.0")

configure_args += ["--with-fipsdir=#{install_dir}/embedded", "fips"] if fips_mode?

Expand Down

0 comments on commit a901ec2

Please sign in to comment.