summaryrefslogtreecommitdiff
path: root/DOC_CHANGES.md
diff options
context:
space:
mode:
authorBryan McLellan <btm@loftninjas.org>2014-08-12 14:27:00 -0400
committerBryan McLellan <btm@loftninjas.org>2014-08-12 16:53:28 -0400
commiteeb33043718d01ad2add0e4982cc557972d01ad2 (patch)
tree96a7ab7e4f1804948a4f4065f6bb57d8d3022605 /DOC_CHANGES.md
parent2952ea0750b21821611e8cce8b2eb3d9bc86fa82 (diff)
downloadchef-eeb33043718d01ad2add0e4982cc557972d01ad2.tar.gz
Update release notes for CHEF-5022
Diffstat (limited to 'DOC_CHANGES.md')
-rw-r--r--DOC_CHANGES.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/DOC_CHANGES.md b/DOC_CHANGES.md
index b557601466..ab1f5844a1 100644
--- a/DOC_CHANGES.md
+++ b/DOC_CHANGES.md
@@ -23,3 +23,12 @@ rt string, an enumerable of ports, or a single port number.
### Encrypted Data Bags Version 3
Encrypted Data Bag version 3 uses [GCM](http://en.wikipedia.org/wiki/Galois/Counter_Mode) internally. Ruby 2 and OpenSSL version 1.0.1 or higher are required to use it.
+
+### New windows_service resource
+
+The windows_service resource inherits from the service resource and has all the same options but adds an action and attribute.
+
+action :configure_startup - sets the startup type on the resource to the value of the `startup_type` attribute
+attribute startup_type - the value as a symbol that the startup type should be set to on the service, valid options :automatic, :manual, :disabled
+
+Note that the service resource will also continue to set the startup type to automatic or disabled, respectively, when the enabled or disabled actions are used.