Skip to content

Commit 2f56554

Browse files
committed
update vagrantfile
1 parent a4a8b41 commit 2f56554

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Vagrantfile

+2-4
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
1717
end
1818

1919
config.vm.define "sensu-server", primary: true, autostart: true do |server|
20-
server.vm.box = "ubuntu-14_04"
21-
server.vm.box_url = "https://vagrantcloud.com/ubuntu/boxes/trusty64/versions/1/providers/virtualbox.box"
20+
server.vm.box = "ubuntu/trusty64"
2221
server.vm.hostname = 'sensu-server'
2322
server.vm.network :private_network, ip: "192.168.56.10"
2423
server.vm.provision :shell, :path => "tests/provision_server.sh"
@@ -29,8 +28,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
2928
end
3029

3130
config.vm.define "sensu-client", autostart: true do |client|
32-
client.vm.box = "ubuntu-14_04"
33-
client.vm.box_url = "https://vagrantcloud.com/ubuntu/boxes/trusty64/versions/1/providers/virtualbox.box"
31+
client.vm.box = "ubuntu/trusty64"
3432
client.vm.hostname = 'sensu-client'
3533
client.vm.network :private_network, ip: "192.168.56.11"
3634
client.vm.provision :shell, :path => "tests/provision_client.sh"

0 commit comments

Comments
 (0)