diff options
author | Tim Smith <tsmith@chef.io> | 2018-01-05 14:27:44 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-01-05 15:17:44 -0800 |
commit | 98223f0b0fdca5ae8d460738c8c01ca0e80ec2c8 (patch) | |
tree | f053a068962ba4dbed2338eb37292614b7536b5d /lib/chef/resources.rb | |
parent | 21155f73467969da3b36a35b146100d1a04b0cdf (diff) | |
download | chef-98223f0b0fdca5ae8d460738c8c01ca0e80ec2c8.tar.gz |
Add dhparam, rsa_private_key and rsa_public_key resources
Ported from the openssl cookbook. I've done all the major refactoring there to shake the bugs out. This is just reformatted to use the mixin instead of a cookbook helper and to be library style so it works in core chef.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resources.rb')
-rw-r--r-- | lib/chef/resources.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/chef/resources.rb b/lib/chef/resources.rb index 54d21fd53c..31d4589ca3 100644 --- a/lib/chef/resources.rb +++ b/lib/chef/resources.rb @@ -56,6 +56,9 @@ require "chef/resource/mdadm" require "chef/resource/mount" require "chef/resource/ohai" require "chef/resource/openbsd_package" +require "chef/resource/openssl_dhparam" +require "chef/resource/openssl_rsa_private_key" +require "chef/resource/openssl_rsa_public_key" require "chef/resource/package" require "chef/resource/pacman_package" require "chef/resource/paludis_package" |