diff options
author | Bryan McLellan <btm@loftninjas.org> | 2014-08-12 14:27:00 -0400 |
---|---|---|
committer | Bryan McLellan <btm@loftninjas.org> | 2014-08-12 16:53:28 -0400 |
commit | eeb33043718d01ad2add0e4982cc557972d01ad2 (patch) | |
tree | 96a7ab7e4f1804948a4f4065f6bb57d8d3022605 /RELEASE_NOTES.md | |
parent | 2952ea0750b21821611e8cce8b2eb3d9bc86fa82 (diff) | |
download | chef-eeb33043718d01ad2add0e4982cc557972d01ad2.tar.gz |
Update release notes for CHEF-5022
Diffstat (limited to 'RELEASE_NOTES.md')
-rw-r--r-- | RELEASE_NOTES.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index db14882996..9199c827b3 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -97,3 +97,20 @@ On OSX, the 'group' provider would use 'etc' to determine existing groups, but 'dscl' to add groups, causing broken idempotency if something existed in /etc/group. The provider now uses 'dscl' for both idempotenty checks and modifications. + +## Windows Service Startup Type + +When a Windows service is running and Chef stops it, the startup type will change from automatic to manual. A bug previously existed +that prevented you from changing the startup type to disabled from manual. Using the enable and disable actions will now correctly set +the service startup type to automatic and disabled, respectively. A new `windows_service` resource has been added that allows you to +specify the startup type as manual: + +``` +windows_service "BITS" do + action :configure_startup + startup_type :manual +end +``` + +You must use the windows_service resource to utilize the `:configure_startup` action and `startup_type` attribute. The service resource +does not support them. |