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

Vagrant.configure(2) do |config|

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

    config.vm.define "fedora28_knot-dns"  do |machine|
        machine.vm.provision "ansible" do |ansible|
            ansible.playbook = "../knot-dns-test.yaml"
            ansible.extra_vars = {
                ansible_python_interpreter: "/usr/bin/python3"
            }
        end
    end

end