diff options
author | Bryan McLellan <btm@loftninjas.org> | 2016-11-16 11:27:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-16 11:27:30 -0500 |
commit | 75c159d90b4ec4dbb470080681a094c9c6d8effc (patch) | |
tree | 77d131703d5331c51f599e07681445da5218900c | |
parent | 552bae2a069c8be464090d8813fb8f3083407798 (diff) | |
parent | 5d5b643d73f65bc50d5e1d5675532c8ae02df24a (diff) | |
download | chef-75c159d90b4ec4dbb470080681a094c9c6d8effc.tar.gz |
Merge pull request #5501 from MsysTechnologiesllc/nim/docs_for_msu_package
Updated release docs for msu_package resource
-rw-r--r-- | RELEASE_NOTES.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 5e04bff069..d3c492ea35 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -5,6 +5,31 @@ Please see [https://docs.chef.io/release_notes.html](https://docs.chef.io/releas ## Highlighted enhancements for this release: +* Added msu_package resource and provider which supports the installation of Microsoft Update(MSU) packages on Windows. Example: + + ```ruby + msu_package 'Install Windows 2012R2 Update KB2959977' do + source 'C:\Users\xyz\AppData\Local\Temp\Windows8.1-KB2959977-x64.msu' + action :install + end + + msu_package 'Remove Windows 2012R2 Update KB2959977' do + source 'C:\Users\xyz\AppData\Local\Temp\Windows8.1-KB2959977-x64.msu' + action :remove + end + + # Using URL in source + msu_package 'Install Windows 2012R2 Update KB2959977' do + source 'https://s3.amazonaws.com/my_bucket/Windows8.1-KB2959977-x64.msu' + action :install + end + + msu_package 'Remove Windows 2012R2 Update KB2959977' do + source 'https://s3.amazonaws.com/my_bucket/Windows8.1-KB2959977-x64.msu' + action :remove + end + ``` + ### `attribute_changed` event hook * Added `attribute_changed` event hook: |