summary refs log tree commit diff stats
path: root/vagrant/.vagrant.d/Vagrantfile
diff options
context:
space:
mode:
authorAlan Pearce2017-03-24 21:22:27 +0100
committerAlan Pearce2017-03-24 21:22:27 +0100
commitbbb26322199d41171595bff6d073bda1fa1fa62c (patch)
tree799f160f60327a1b026fd9f4065636e611ccafb0 /vagrant/.vagrant.d/Vagrantfile
parent0c4343e413bbc922954b417a639c60dfa007a0da (diff)
parent53f50286e177abb9d1ac4a7c239dcbcc3fed63b7 (diff)
downloadnixfiles-bbb26322199d41171595bff6d073bda1fa1fa62c.tar.lz
nixfiles-bbb26322199d41171595bff6d073bda1fa1fa62c.tar.zst
nixfiles-bbb26322199d41171595bff6d073bda1fa1fa62c.zip
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'vagrant/.vagrant.d/Vagrantfile')
-rw-r--r--vagrant/.vagrant.d/Vagrantfile7
1 files changed, 7 insertions, 0 deletions
diff --git a/vagrant/.vagrant.d/Vagrantfile b/vagrant/.vagrant.d/Vagrantfile
new file mode 100644
index 00000000..4c69c88e
--- /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