Commit c8fcf6d252510132815e0681c825d191ebce915e
Exists in
master
and in
90 other branches
Merge branch 'vagrant-box' into 'master'
Vagrant box See merge request !21
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
Vagrantfile
... | ... | @@ -7,7 +7,7 @@ require 'yaml' |
7 | 7 | VAGRANTFILE_API_VERSION = "2" |
8 | 8 | |
9 | 9 | Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| |
10 | - config.vm.box = ENV.fetch("VAGRANT_BOX", 'centos7') | |
10 | + config.vm.box = ENV.fetch("VAGRANT_BOX", 'chef/centos-7.0') | |
11 | 11 | proxy = ENV['http_proxy'] || ENV['HTTP_PROXY'] |
12 | 12 | if proxy |
13 | 13 | config.vm.provision 'shell', path: 'utils/proxy.sh', args: [proxy] | ... | ... |