More HPCloud updates after testing.

This commit is contained in:
Tim Kuhlman 2014-06-13 14:01:43 -06:00
parent 825b15a31e
commit 1589dd6672
2 changed files with 4 additions and 4 deletions

6
HPCloud/Vagrantfile vendored
View File

@ -16,11 +16,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.hostname = 'mini-mon'
config.vm.synced_folder ".", "/vagrant" # needed to get vertica packages but otherwise unneeded
config.vm.provision :shell, path: "./HPCloud/chef-solo-bootstrap.sh"
config.vm.provision :shell, path: "./chef-solo-bootstrap.sh"
config.vm.provision :chef_solo do |chef|
chef.roles_path = "./roles"
chef.data_bags_path = "./data_bags"
chef.roles_path = "../roles"
chef.data_bags_path = "../data_bags"
chef.add_role "Mini-Mon"
end
end

View File

@ -14,6 +14,6 @@ Vagrant.configure("2") do |config|
hp.ssh_private_key_path = "~/.ssh/id_rsa"
hp.ssh_username = "ubuntu"
hp.security_groups = ["default"]
hp.image = "Ubuntu Server 12.04.4 LTS (amd64 20140408) - Partner Image"
hp.image = "Ubuntu Server 12.04 LTS (amd64 20140606) - Partner Image"
end
end