]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
distro/tests: add new distros
authorTomas Krizek <tomas.krizek@nic.cz>
Fri, 29 Jun 2018 09:54:49 +0000 (11:54 +0200)
committerTomas Krizek <tomas.krizek@nic.cz>
Fri, 29 Jun 2018 09:54:49 +0000 (11:54 +0200)
distro/tests/fedora28/Vagrantfile [new file with mode: 0644]
distro/tests/ubuntu1804/Vagrantfile [new file with mode: 0644]

diff --git a/distro/tests/fedora28/Vagrantfile b/distro/tests/fedora28/Vagrantfile
new file mode 100644 (file)
index 0000000..0fcce06
--- /dev/null
@@ -0,0 +1,16 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+#
+
+Vagrant.configure(2) do |config|
+
+    config.vm.box = "fedora/28-cloud-base"
+    config.vm.synced_folder ".", "/vagrant", disabled: true
+
+    config.vm.define "fedora28_knot-resolver"  do |machine|
+        machine.vm.provision "ansible" do |ansible|
+            ansible.playbook = "../knot-resolver-test.yaml"
+        end
+    end
+
+end
diff --git a/distro/tests/ubuntu1804/Vagrantfile b/distro/tests/ubuntu1804/Vagrantfile
new file mode 100644 (file)
index 0000000..73698d9
--- /dev/null
@@ -0,0 +1,16 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+#
+
+Vagrant.configure(2) do |config|
+
+    config.vm.box = "generic/ubuntu1804"
+    config.vm.synced_folder ".", "/vagrant", disabled: true
+
+    config.vm.define "ubuntu1804_knot-resolver"  do |machine|
+        machine.vm.provision "ansible" do |ansible|
+            ansible.playbook = "../knot-resolver-test.yaml"
+        end
+    end
+
+end