Merge "devstack/vagrant: Add 127.0.0.1 to no_proxy list"

This commit is contained in:
Jenkins 2017-03-24 09:48:25 +00:00 committed by Gerrit Code Review
commit 488c9c186f
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ Vagrant.configure(2) do |config|
config.proxy.https = ENV["https_proxy"]
end
if ENV["no_proxy"]
config.proxy.no_proxy = ENV["no_proxy"] + ',192.168.10.6,10.0.2.15'
config.proxy.no_proxy = ENV["no_proxy"] + ',192.168.10.6,10.0.2.15,127.0.0.1'
end
end