summaryrefslogtreecommitdiffstats
path: root/distro/tests/debian9/Vagrantfile
blob: 2450d14dd1e4c232681a9ff38097cfda08ba031d (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 = "debian/stretch64"
    config.vm.synced_folder ".", "/vagrant", disabled: true

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

end