diff options
author | Claire McQuin <claire@getchef.com> | 2014-05-29 12:44:29 -0700 |
---|---|---|
committer | Claire McQuin <claire@getchef.com> | 2014-06-03 09:17:42 -0700 |
commit | f588069b278fa068359b06a1368e95c09d677b9e (patch) | |
tree | 2990a91c1834401e88ca18d54b5484416abbb1ba /DOC_CHANGES.md | |
parent | 1fcae67beca488117543afb446c8737dc060f695 (diff) | |
download | chef-f588069b278fa068359b06a1368e95c09d677b9e.tar.gz |
add error handling, set *_proxy instead of *_PROXY
Diffstat (limited to 'DOC_CHANGES.md')
-rw-r--r-- | DOC_CHANGES.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/DOC_CHANGES.md b/DOC_CHANGES.md index cf3fdc5bd3..901d79d090 100644 --- a/DOC_CHANGES.md +++ b/DOC_CHANGES.md @@ -82,7 +82,7 @@ The default behavior is for the node to save all the attribute data. This can be We recommend only using `automatic_attribute_whitelist` to reduce the size of the system data being stored for nodes, and discourage the use of the other attribute whitelists except by advanced users. -### Set PROXY environment variables if present in your config file. +### Set proxy environment variables if present in your config file. If `:http_proxy`, `:https_proxy`, `:ftp_proxy`, or `:no_proxy` is found in your config file, we will configure your environment variables according to the variable form and configuration info given. If your config file looks like @@ -92,4 +92,4 @@ http_proxy_user "myself" http_proxy_pass "Password1" ```` -then Chef will set `ENV[:HTTP_PROXY] = "http://myself:Password1@proxy.example.org:8080"` +then Chef will set `ENV['http_proxy'] = "http://myself:Password1@proxy.example.org:8080"` |