summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Hass <rhass@users.noreply.github.com>2016-10-07 15:39:13 -0700
committerGitHub <noreply@github.com>2016-10-07 15:39:13 -0700
commit353460fda20600690fa7991a36bbe8c02a180048 (patch)
treea63f2c55ff8509a247fc96be80d4061fa1ce7edf
parenta0e772a2939b9b2813f998d1e08b43762975f8c8 (diff)
parent4ca8b176448d7484a2eaebe8e7fa20f431ae4b5c (diff)
downloadchef-353460fda20600690fa7991a36bbe8c02a180048.tar.gz
Merge pull request #5413 from MsysTechnologiesllc/vj/update_release_notes_for_cab_package_resource
Updated release notes for cab_package resource and provider
-rw-r--r--RELEASE_NOTES.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index b652d7e837..0eb8c798d3 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -30,6 +30,20 @@ Please see [https://docs.chef.io/release_notes.html](https://docs.chef.io/releas
* Support for Solaris releases before 10u11 has been removed
* Upgraded Ohai to 8.20 with new / enhanced plugins. See the [ohai changelog](https://github.com/chef-cookbooks/ohai/blob/master/CHANGELOG.md)
+* Added cab_package resource and provider which supports the installation of CAB/cabinet packages on Windows. Example:
+
+ ```ruby
+ cab_package 'Install .NET 3.5 sp1 via KB958488' do
+ source 'C:\Users\xyz\AppData\Local\Temp\Windows6.1-KB958488-x64.cab'
+ action :install
+ end
+
+ cab_package 'Remove .NET 3.5 sp1 via KB958488' do
+ source 'C:\Users\xyz\AppData\Local\Temp\Windows6.1-KB958488-x64.cab'
+ action :remove
+ end
+ ```
+ **NOTE:** cab_package resource does not support URLs in `source`.
## Highlighted bug fixes for this release: