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