diff options
author | Claire McQuin <claire@getchef.com> | 2014-05-27 13:52:32 -0700 |
---|---|---|
committer | Claire McQuin <claire@getchef.com> | 2014-06-03 09:17:18 -0700 |
commit | a2ef9f1a93af762c1d17c6b30551e1f5d9388ab3 (patch) | |
tree | 9e4295a547a739fd9eb11b3789e8717134198338 /DOC_CHANGES.md | |
parent | e52798c5fda734553304e98585cbe5142bc116c9 (diff) | |
download | chef-a2ef9f1a93af762c1d17c6b30551e1f5d9388ab3.tar.gz |
update for setting proxy env vars
Diffstat (limited to 'DOC_CHANGES.md')
-rw-r--r-- | DOC_CHANGES.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/DOC_CHANGES.md b/DOC_CHANGES.md index 9365cdddd2..cf3fdc5bd3 100644 --- a/DOC_CHANGES.md +++ b/DOC_CHANGES.md @@ -81,3 +81,15 @@ If your config file looks like `automatic_attribute_whitelist = []`, then none o The default behavior is for the node to save all the attribute data. This can be ensured by setting your whitelist filter to `nil`. 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. + +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 + +```` +http_proxy "http://proxy.example.org:8080" +http_proxy_user "myself" +http_proxy_pass "Password1" +```` + +then Chef will set `ENV[:HTTP_PROXY] = "http://myself:Password1@proxy.example.org:8080"` |