Skip to content

Commit

Permalink
Update vagrant bento box urls
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
tersmitten committed Nov 4, 2016
1 parent d7710c3 commit 523d69b
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,40 +6,35 @@ role = File.basename(File.expand_path(File.dirname(__FILE__)))
boxes = [
{
:name => "ubuntu-1204",
:box => "opscode-ubuntu-12.04",
:url => "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-12.04_chef-provisionerless.box",
:box => "bento/ubuntu-12.04",
:ip => '10.0.0.11',
:cpu => "50",
:ram => "256"
},
{
:name => "ubuntu-1404",
:box => "opscode-ubuntu-14.04",
:url => "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-14.04_chef-provisionerless.box",
:box => "bento/ubuntu-14.04",
:ip => '10.0.0.12',
:cpu => "50",
:ram => "256"
},
{
:name => "ubuntu-1604",
:box => "opscode-ubuntu-16.04",
:url => "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-16.04_chef-provisionerless.box",
:box => "bento/ubuntu-16.04",
:ip => '10.0.0.13',
:cpu => "50",
:ram => "256"
},
{
:name => "debian-711",
:box => "opscode-debian-7.11",
:url => "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_debian-7.11_chef-provisionerless.box",
:box => "bento/debian-7.11",
:ip => '10.0.0.14',
:cpu => "50",
:ram => "256"
},
{
:name => "debian-85",
:box => "opscode-debian-8.5",
:url => "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_debian-8.5_chef-provisionerless.box",
:box => "bento/debian-8.5",
:ip => '10.0.0.15',
:cpu => "50",
:ram => "256"
Expand All @@ -50,7 +45,6 @@ Vagrant.configure("2") do |config|
boxes.each do |box|
config.vm.define box[:name] do |vms|
vms.vm.box = box[:box]
vms.vm.box_url = box[:url]
vms.vm.hostname = "ansible-#{role}-#{box[:name]}"

vms.vm.provider "virtualbox" do |v|
Expand Down

0 comments on commit 523d69b

Please sign in to comment.