summary refs log tree commit diff stats
path: root/vagrant/.vagrant.d/Vagrantfile
blob: 4c69c88ed0e8c74777ea4f9ca2b0aab9025e2e59 (plain)
1
2
3
4
5
6
7
# -*- mode: ruby -*-
Vagrant.configure(2) do |config|
  config.vm.provision "ansible" do |ansible|
    ansible.playbook = "#{File.dirname(__FILE__)}/ansible/site.yml"
    ansible.limit = "all"
  end
end