Skip to content

Commit

Permalink
update vagrantfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jlambert121 committed Dec 15, 2014
1 parent a4a8b41 commit 2f56554
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

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

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

0 comments on commit 2f56554

Please sign in to comment.