mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
692e660140
* Fix #1617 Add dh_params resource Signed-off-by: Doc Walker <4-20ma@wvfans.net>
8 lines
131 B
Ruby
8 lines
131 B
Ruby
if node['platform_family'] != 'windows'
|
|
|
|
openssl_dhparam '/tmp/example.dh_pem' do
|
|
key_length 2048
|
|
generator 2
|
|
end
|
|
|
|
end
|