Add vagrant configuration with ansible provisioning
1 file changed, 7 insertions(+), 0 deletions(-)
changed files
A 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