Skip to content

Commit 6dd67e1

Browse files
committed
Update Vagrantfile with proper Vagrant Cloud URLs jdowning#6
2 parents 2c23f71 + 48b2651 commit 6dd67e1

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

Vagrantfile

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,17 @@ Vagrant.configure("2") do |config|
66
config.vm.synced_folder "modules", "/tmp/puppet-modules", type: "rsync", rsync__exclude: ".git/"
77
config.vm.synced_folder ".", "/tmp/puppet-modules/influxdb", type: "rsync", rsync__exclude: ".git/"
88

9-
config.vm.define "centos" do |centos|
10-
centos.vm.box = 'centos64'
11-
centos.vm.box_url = 'http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210.box'
9+
config.vm.define "centos", primary: true do |centos|
10+
centos.vm.box = "puppetlabs/centos-6.5-64-puppet"
1211
centos.vm.provision :puppet do |puppet|
1312
puppet.manifests_path = "tests"
1413
puppet.manifest_file = "vagrant.pp"
1514
puppet.options = ["--modulepath", "/tmp/puppet-modules"]
1615
end
1716
end
1817

19-
config.vm.define "ubuntu" do |ubuntu|
20-
ubuntu.vm.box = 'ubuntu64'
21-
ubuntu.vm.box_url = 'http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-12042-x64-vbox4210.box'
18+
config.vm.define "ubuntu", autostart: false do |ubuntu|
19+
ubuntu.vm.box = "puppetlabs/ubuntu-14.04-64-puppet"
2220
ubuntu.vm.provision :puppet do |puppet|
2321
puppet.manifests_path = "tests"
2422
puppet.manifest_file = "vagrant.pp"

0 commit comments

Comments
 (0)