summaryrefslogtreecommitdiff
path: root/DOC_CHANGES.md
diff options
context:
space:
mode:
authorClaire McQuin <claire@getchef.com>2014-05-06 16:21:52 -0700
committerClaire McQuin <claire@getchef.com>2014-05-06 16:21:52 -0700
commit012f306a18d1422bb91c439a6a790b97def07d3a (patch)
tree66b4a5747599d82dda4ed3fad063f770ae0e04e6 /DOC_CHANGES.md
parent46356acc1290549eba49f35cdd2a82ae56e4718b (diff)
parent385f993a73726d9e1bfbfcf3454b7f246ba542c6 (diff)
downloadchef-012f306a18d1422bb91c439a6a790b97def07d3a.tar.gz
Merge branch 'master' into CHEF-5074
Conflicts: CHANGELOG.md DOC_CHANGES.md
Diffstat (limited to 'DOC_CHANGES.md')
-rw-r--r--DOC_CHANGES.md19
1 files changed, 15 insertions, 4 deletions
diff --git a/DOC_CHANGES.md b/DOC_CHANGES.md
index ee65736b14..27706774f6 100644
--- a/DOC_CHANGES.md
+++ b/DOC_CHANGES.md
@@ -4,9 +4,20 @@ This file is reset every time a new release is done. This file describes changes
Example Doc Change:
### Headline for the required change
Description of the required change.
+-->
-### --run-lock-timeout for `chef-client` and `solo`
-Users can now add a timeout for the maximum time a client run waits on another client run to finish.
+### --run-lock-timeout for chef-client and chef-solo
+You can now add a timeout for the maximum time a client run waits on another client run to finish.
The default is to wait indefinitely.
-Setting the run lock timeout to 0 causes the second client run to exit immediately.
--->
+Setting the run lock timeout to 0 causes the second client run to exit immediately:
+
+```
+chef-client --run-lock-timeout 0
+```
+
+#### New knife command: knife node environment set
+You can now easily set the environment for an existing node without editing the node object:
+
+```
+knife node environment set NODE ENVIRONMENT
+```