From 8d688e54a1d68b2f02b397a193a05c5762e691d7 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 2 May 2014 19:16:50 +0100 Subject: Add vagrant configuration with ansible provisioning --- tag-vagrant/vagrant.d/Vagrantfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tag-vagrant/vagrant.d/Vagrantfile (limited to 'tag-vagrant/vagrant.d/Vagrantfile') 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 -- cgit 1.4.1