summaryrefslogtreecommitdiffstats
path: root/distro/tests/centos7/Vagrantfile
blob: dbb61f4db86fbe9d07ae0a42e7f71c034de2234c (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 = "centos/7"
    config.vm.synced_folder ".", "/vagrant", disabled: true

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

end