all repos — archive/dotfiles @ a0219037c6eff35b09b0ec4352efff3606b5d140

Superseded by nixfiles

tag-vagrant/vagrant.d/Vagrantfile (view raw)

1
2
3
4
5
6
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