Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.15 KB

RELEASE_NOTES.md

File metadata and controls

32 lines (24 loc) · 1.15 KB

This file holds "in progress" release notes for the current release under development and is intended for consumption by the Chef Documentation team. Please see https://docs.chef.io/release_notes.html for the official Chef release notes.

Chef Client Release Notes 12.17:

Highlighted enhancements for this release:

  • Added msu_package resource and provider which supports the installation of Microsoft Update(MSU) packages on Windows. Example:

    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

Highlighted bug fixes for this release: