]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
distro/tests: add Fedora29
authorTomas Krizek <tomas.krizek@nic.cz>
Fri, 2 Nov 2018 11:01:43 +0000 (12:01 +0100)
committerTomas Krizek <tomas.krizek@nic.cz>
Fri, 2 Nov 2018 13:46:21 +0000 (14:46 +0100)
distro/tests/fedora29/Vagrantfile [new file with mode: 0644]

diff --git a/distro/tests/fedora29/Vagrantfile b/distro/tests/fedora29/Vagrantfile
new file mode 100644 (file)
index 0000000..54ae339
--- /dev/null
@@ -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