diff options
author | Vasu1105 <vasundhara.jagdale@msystechnologies.com> | 2016-10-06 00:32:23 +0530 |
---|---|---|
committer | Vasu1105 <vasundhara.jagdale@msystechnologies.com> | 2016-10-06 00:32:23 +0530 |
commit | 4ca8b176448d7484a2eaebe8e7fa20f431ae4b5c (patch) | |
tree | e0557849667f02b9be0a4cca05ac98926ec2b51f /RELEASE_NOTES.md | |
parent | 1cdd613855778050dee83fbc17cced869e9a7c5c (diff) | |
download | chef-4ca8b176448d7484a2eaebe8e7fa20f431ae4b5c.tar.gz |
Updated release notes for cab_package resource and provider
Signed-off-by: Vasu1105 <vasundhara.jagdale@msystechnologies.com>
Diffstat (limited to 'RELEASE_NOTES.md')
-rw-r--r-- | RELEASE_NOTES.md | 14 |
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: |