Skip to content

Commit 978950c

Browse files
committed
Also pass through lowercase proxy vars to provision script
Signed-off-by: Anna Rift <[email protected]>
1 parent 3152330 commit 978950c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

util/devel/test/vagrant/current/freebsd-FreeBSD-13.4-STABLE/Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Vagrant.configure("2") do |config|
1414
config.vm.disk :disk, size: "12GB", primary: true
1515

1616
config.vm.provision "shell" do |s|
17-
s.env = { HTTP_PROXY:ENV['HTTP_PROXY'], HTTPS_PROXY:ENV['HTTPS_PROXY'] }
17+
s.env = { http_proxy:ENV['http_proxy'], https_proxy:ENV['https_proxy'] }
1818
s.path = "../../provision-scripts/proxy-setup.sh"
1919
end
2020

util/devel/test/vagrant/current/freebsd-FreeBSD-13.5-STABLE/Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Vagrant.configure("2") do |config|
1414
config.vm.disk :disk, size: "12GB", primary: true
1515

1616
config.vm.provision "shell" do |s|
17-
s.env = { HTTP_PROXY:ENV['HTTP_PROXY'], HTTPS_PROXY:ENV['HTTPS_PROXY'] }
17+
s.env = { http_proxy:ENV['http_proxy'], https_proxy:ENV['https_proxy'] }
1818
s.path = "../../provision-scripts/proxy-setup.sh"
1919
end
2020

util/devel/test/vagrant/current/freebsd-FreeBSD-14.2-STABLE/Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Vagrant.configure("2") do |config|
1414
config.vm.disk :disk, size: "12GB", primary: true
1515

1616
config.vm.provision "shell" do |s|
17-
s.env = { HTTP_PROXY:ENV['HTTP_PROXY'], HTTPS_PROXY:ENV['HTTPS_PROXY'] }
17+
s.env = { http_proxy:ENV['http_proxy'], https_proxy:ENV['https_proxy'] }
1818
s.path = "../../provision-scripts/proxy-setup.sh"
1919
end
2020

util/devel/test/vagrant/current/generic-x32-debian12/Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Vagrant.configure("2") do |config|
1111
config.vm.box_version = "4.3.12"
1212

1313
config.vm.provision "shell" do |s|
14-
s.env = { HTTP_PROXY:ENV['HTTP_PROXY'], HTTPS_PROXY:ENV['HTTPS_PROXY'] }
14+
s.env = { http_proxy:ENV['http_proxy'], https_proxy:ENV['https_proxy'] }
1515
s.path = "../../provision-scripts/proxy-setup.sh"
1616
end
1717

util/devel/test/vagrant/current/ubuntu-jammy64-homebrew/Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Vagrant.configure("2") do |config|
99
config.vm.box = "ubuntu/jammy64"
1010

1111
config.vm.provision "shell" do |s|
12-
s.env = { HTTP_PROXY:ENV['HTTP_PROXY'], HTTPS_PROXY:ENV['HTTPS_PROXY'] }
12+
s.env = { http_proxy:ENV['http_proxy'], https_proxy:ENV['https_proxy'] }
1313
s.path = "../../provision-scripts/proxy-setup.sh"
1414
end
1515

0 commit comments

Comments
 (0)