Update more cookbooks

This commit is contained in:
Greg Karékinian
2017-06-16 11:25:49 +02:00
parent 7da2c5a738
commit f5858319a7
129 changed files with 1095 additions and 101571 deletions

View File

@@ -2,6 +2,12 @@
This file is used to list changes made in each version of the openssl cookbook.
## 7.1.0 (2017-05-30)
- Add supported platforms to the metdata
- Fix amazon support
- Remove class_eval usage and require Chef 12.7+
## 7.0.1 (2017-03-21)
- Fix compatibility with Chef 12.5.1

View File

@@ -25,7 +25,7 @@ The `upgrade` recipe has been tested on the following platforms:
## Chef
- Chef 12.5+
- Chef 12.7+
## Cookbooks

File diff suppressed because one or more lines are too long

View File

@@ -20,7 +20,7 @@
case node['platform_family']
when 'debian', 'ubuntu'
packages = %w(libssl1.0.0 openssl)
when 'rhel', 'fedora', 'suse'
when 'rhel', 'fedora', 'suse', 'amazon'
packages = %w(openssl)
else
packages = []

View File

@@ -42,7 +42,7 @@ action :create do
end
end
action_class.class_eval do
action_class do
def generate_key_file
unless new_resource.key_file
path, file = ::File.split(new_resource.name)