From: Tomas Krizek Date: Fri, 2 Nov 2018 11:01:43 +0000 (+0100) Subject: distro/tests: add Fedora29 X-Git-Tag: v3.1.0~2^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0be2467fd55ac5c86aff5fa3723eb419d7b69122;p=thirdparty%2Fknot-resolver.git distro/tests: add Fedora29 --- diff --git a/distro/tests/fedora29/Vagrantfile b/distro/tests/fedora29/Vagrantfile new file mode 100644 index 000000000..54ae339eb --- /dev/null +++ b/distro/tests/fedora29/Vagrantfile @@ -0,0 +1,16 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : +# + +Vagrant.configure(2) do |config| + + config.vm.box = "fedora/29-cloud-base" + config.vm.synced_folder ".", "/vagrant", disabled: true + + config.vm.define "fedora29_knot-resolver" do |machine| + machine.vm.provision "ansible" do |ansible| + ansible.playbook = "../knot-resolver-test.yaml" + end + end + +end