summaryrefslogtreecommitdiffstats
path: root/distro/tests/arch/Vagrantfile
blob: f7fe8803544e7b31c77ec177b0ab88c497001c43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- mode: ruby -*-
# vi: set ft=ruby :
#

Vagrant.configure(2) do |config|

    config.vm.box = "archlinux/archlinux"
    config.vm.synced_folder ".", "/vagrant", disabled: true

    config.vm.define "arch_knot-dns"  do |machine|
        machine.vm.provision "ansible" do |ansible|
            ansible.playbook = "../knot-dns-test.yaml"
        end
    end

end