brozzler/vagrant/Vagrantfile

14 lines
388 B
Ruby
Raw Permalink Normal View History

2016-06-30 17:50:11 -05:00
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.define "10.9.9.9"
config.vm.hostname = "brzl"
config.vm.network :private_network, ip: "10.9.9.9"
2016-06-30 17:50:11 -05:00
config.vm.synced_folder "..", "/brozzler"
2016-06-30 17:50:11 -05:00
config.vm.provision "ansible" do |ansible|
ansible.inventory_path = "../ansible/hosts-vagrant"
ansible.playbook = "../ansible/playbook.yml"
2016-06-30 17:50:11 -05:00
end
end