diff options
Diffstat (limited to 'vagrant/.vagrant.d/Vagrantfile')
-rw-r--r-- | vagrant/.vagrant.d/Vagrantfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vagrant/.vagrant.d/Vagrantfile b/vagrant/.vagrant.d/Vagrantfile new file mode 100644 index 0000000..4c69c88 --- /dev/null +++ b/vagrant/.vagrant.d/Vagrantfile @@ -0,0 +1,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 |