Commit ee211922384ae86bb01ab2e62ace66198ff34ba4

Authored by Sergio Oliveira
2 parents a17fd863 c8fcf6d2

Merge remote-tracking branch 'origin' into fix_external_firewall

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]
... ...