summaryrefslogtreecommitdiffstats
path: root/distro/tests
diff options
context:
space:
mode:
authorTomas Krizek <tomas.krizek@nic.cz>2018-03-26 15:17:48 +0200
committerTomas Krizek <tomas.krizek@nic.cz>2018-03-28 16:23:41 +0200
commit3a7850d12546be0767d240e89c594adf1961300b (patch)
tree0f2005c6bb6d7bbf372835768c631e8ea266d898 /distro/tests
parentdistro/tests: add service reload to package tests (diff)
downloadknot-3a7850d12546be0767d240e89c594adf1961300b.tar.xz
knot-3a7850d12546be0767d240e89c594adf1961300b.zip
distro/tests: add openSUSE VM
Diffstat (limited to 'distro/tests')
-rw-r--r--distro/tests/tumbleweed/Vagrantfile16
1 files changed, 16 insertions, 0 deletions
diff --git a/distro/tests/tumbleweed/Vagrantfile b/distro/tests/tumbleweed/Vagrantfile
new file mode 100644
index 000000000..afdd618bb
--- /dev/null
+++ b/distro/tests/tumbleweed/Vagrantfile
@@ -0,0 +1,16 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+#
+
+Vagrant.configure(2) do |config|
+
+ config.vm.box = "opensuse/openSUSE-Tumbleweed-x86_64"
+ config.vm.synced_folder ".", "/vagrant", disabled: true
+
+ config.vm.define "tumbleweed_knot-dns" do |machine|
+ machine.vm.provision "ansible" do |ansible|
+ ansible.playbook = "../knot-dns-test.yaml"
+ end
+ end
+
+end