diff options
author | Alan Pearce | 2014-05-02 19:16:50 +0100 |
---|---|---|
committer | Alan Pearce | 2014-05-02 19:16:50 +0100 |
commit | 8d688e54a1d68b2f02b397a193a05c5762e691d7 (patch) | |
tree | 1dea8b23abe6f7f641c01e3972b7b127ff4c2f68 /tag-vagrant/vagrant.d/Vagrantfile | |
parent | 6ff45924c8e408668e0851fb5058700822c77e93 (diff) | |
download | nixfiles-8d688e54a1d68b2f02b397a193a05c5762e691d7.tar.lz nixfiles-8d688e54a1d68b2f02b397a193a05c5762e691d7.tar.zst nixfiles-8d688e54a1d68b2f02b397a193a05c5762e691d7.zip |
Add vagrant configuration with ansible provisioning
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 |