Skip to content

Commit

Permalink
fix boolish logic
Browse files Browse the repository at this point in the history
  • Loading branch information
rtib committed Oct 22, 2024
1 parent 9230d0b commit 3e6ec43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/puppet/provider/x509_cert/openssl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def create
options += ['-passin', 'env:CERTIFICATE_PASSIN']
env['CERTIFICATE_PASSIN'] = password
end
options += ['-extensions', 'v3_req'] if resource[:req_ext] != :false
options += ['-extensions', 'v3_req'] if resource[:req_ext]

# openssl(options) doesn't work because it's impossible to pass an env
# https://github.com/puppetlabs/puppet/issues/9493
Expand Down

0 comments on commit 3e6ec43

Please sign in to comment.