Fix Vagrantfile for no_proxy is empty

ENV["no_proxy"] is nil if the environment variable is empty, but
expected as empty string "" wrongly. This update is to fix the mistake.

Closes-Bug: #1991327
Signed-off-by: Yasufumi Ogawa <yasufum.o@gmail.com>
Change-Id: I84c4631eed2eb56448077eb51ff4b2341f08ac2b
This commit is contained in:
Yasufumi Ogawa 2022-09-30 04:58:39 +09:00
parent 286234013e
commit 77ecc2a7b3
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ Vagrant.configure("2") do |config|
if Vagrant.has_plugin?("vagrant-proxyconf")
server.proxy.http = ENV["http_proxy"]
server.proxy.https = ENV["https_proxy"]
if ENV["no_proxy"] != ""
if ENV["no_proxy"] != nil
server.proxy.no_proxy = ENV["no_proxy"] +
"," + machine.private_ips.join(",")
end