summaryrefslogtreecommitdiffstats
path: root/distro/tests/leap15/Vagrantfile
blob: 91996f034a2bd1a4db7cc498b5b829565203de23 (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 = "opensuse/openSUSE-15.0-x86_64"
    config.vm.synced_folder ".", "/vagrant", disabled: true

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

end