diff --git a/CHANGELOG.md b/CHANGELOG.md index 95fbde9..4b124c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change log information for Veeam Cookbook +## Version 2.1.1 +2018-08-25 + +Minor fix update to include `auto_reboot` override to the Recipe::Proxy and Recipe::HostMgmt + ## Version 2.1 2018-08-24 diff --git a/README.md b/README.md index a7cd2b5..29a4b15 100644 --- a/README.md +++ b/README.md @@ -234,6 +234,7 @@ If the automatic upgrade should be skipped then set the following attribute on t Ongoing updates are automatically handled by the following included recipes: - standalone_complete - proxy_server +- host_mgmt - upgrade diff --git a/metadata.rb b/metadata.rb index f5889d8..2b92cc3 100644 --- a/metadata.rb +++ b/metadata.rb @@ -4,7 +4,7 @@ license 'Apache-2.0' description 'Installs/Configures Veeam Backup and Recovery' long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) -version '2.1.0' +version '2.1.1' chef_version '>= 12.5' if respond_to?(:chef_version) supports 'windows' diff --git a/recipes/host_mgmt.rb b/recipes/host_mgmt.rb index 7e7b8c3..1a57f7c 100644 --- a/recipes/host_mgmt.rb +++ b/recipes/host_mgmt.rb @@ -37,6 +37,7 @@ package_url node['veeam']['installer']['update_url'] package_checksum node['veeam']['installer']['update_checksum'] keep_media node['veeam']['upgrade']['keep_media'] + auto_reboot node['veeam']['reboot_on_upgrade'] action :install end diff --git a/recipes/proxy_server.rb b/recipes/proxy_server.rb index b813a15..9fb2cd0 100644 --- a/recipes/proxy_server.rb +++ b/recipes/proxy_server.rb @@ -44,6 +44,7 @@ package_url node['veeam']['installer']['update_url'] package_checksum node['veeam']['installer']['update_checksum'] keep_media node['veeam']['upgrade']['keep_media'] + auto_reboot node['veeam']['reboot_on_upgrade'] action :install end