diff options
author | Tomas Krizek <tomas.krizek@nic.cz> | 2018-03-26 15:17:48 +0200 |
---|---|---|
committer | Tomas Krizek <tomas.krizek@nic.cz> | 2018-03-28 16:23:41 +0200 |
commit | 3a7850d12546be0767d240e89c594adf1961300b (patch) | |
tree | 0f2005c6bb6d7bbf372835768c631e8ea266d898 /distro/tests | |
parent | distro/tests: add service reload to package tests (diff) | |
download | knot-3a7850d12546be0767d240e89c594adf1961300b.tar.xz knot-3a7850d12546be0767d240e89c594adf1961300b.zip |
distro/tests: add openSUSE VM
Diffstat (limited to 'distro/tests')
-rw-r--r-- | distro/tests/tumbleweed/Vagrantfile | 16 |
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 |