all repos — dotfiles @ 1b4d97aa1b1f80effa0c205b8bf6ba70dbef9fa7

Superseded by nixfiles

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