diff options
author | Kyle Mestery <mestery@mestery.com> | 2018-08-10 16:32:13 -0500 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2018-08-14 20:16:51 +0000 |
commit | acc1fbcb5e13961c1fcf1a00952b19b154b296b6 (patch) | |
tree | 3b67148a2b99a0a938dd766cfbf90b4009052851 /extras/vagrant/Vagrantfile | |
parent | ce96dda4478d8a9ee3e3a6646c3367eb20263e3f (diff) |
Make vagrant work behind a proxy
Without this change, I cannot get the in-tree VPP Vagrant to work behind
a proxy. This commit fixes that by ensuring when we run sudo we're passing
environment variables, amongst some other cleanups.
Change-Id: Ica98a1238d40e6e6ccf80c472f52559c95af52f0
Signed-off-by: Kyle Mestery <mestery@mestery.com>
Diffstat (limited to 'extras/vagrant/Vagrantfile')
-rw-r--r-- | extras/vagrant/Vagrantfile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extras/vagrant/Vagrantfile b/extras/vagrant/Vagrantfile index badaa979a43..a97a3dc38fc 100644 --- a/extras/vagrant/Vagrantfile +++ b/extras/vagrant/Vagrantfile @@ -12,6 +12,8 @@ Vagrant.configure(2) do |config| elsif distro == 'opensuse' config.vm.box = "opensuse/openSUSE-42.3-x86_64" config.vm.box_version = "1.0.4.20170726" + elsif distro == 'ubuntu1804' + config.vm.box = "bento/ubuntu-18.04" else config.vm.box = "puppetlabs/ubuntu-16.04-64-nocm" end |