summaryrefslogtreecommitdiff
path: root/lib/chef/resources.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-01-05 14:27:44 -0800
committerTim Smith <tsmith@chef.io>2018-01-05 15:17:44 -0800
commit98223f0b0fdca5ae8d460738c8c01ca0e80ec2c8 (patch)
treef053a068962ba4dbed2338eb37292614b7536b5d /lib/chef/resources.rb
parent21155f73467969da3b36a35b146100d1a04b0cdf (diff)
downloadchef-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.rb3
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"