diff options
author | Tomas Krizek <tomas.krizek@nic.cz> | 2018-06-29 14:06:59 +0200 |
---|---|---|
committer | Tomas Krizek <tomas.krizek@nic.cz> | 2018-06-29 14:29:29 +0200 |
commit | c988e0c4fb13989ad401dfcfb700640b4cfed26a (patch) | |
tree | dded86d826276bdf594894eed0c7e727fa3baba5 /distro/tests | |
parent | distro/tests: support different distro versions (diff) | |
download | knot-c988e0c4fb13989ad401dfcfb700640b4cfed26a.tar.xz knot-c988e0c4fb13989ad401dfcfb700640b4cfed26a.zip |
distro/tests: add new distros
Diffstat (limited to 'distro/tests')
-rw-r--r-- | distro/tests/fedora28/Vagrantfile | 16 | ||||
-rw-r--r-- | distro/tests/ubuntu1804/Vagrantfile | 16 |
2 files changed, 32 insertions, 0 deletions
diff --git a/distro/tests/fedora28/Vagrantfile b/distro/tests/fedora28/Vagrantfile new file mode 100644 index 000000000..24830d5c8 --- /dev/null +++ b/distro/tests/fedora28/Vagrantfile @@ -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-dns" do |machine| + machine.vm.provision "ansible" do |ansible| + ansible.playbook = "../knot-dns-test.yaml" + end + end + +end diff --git a/distro/tests/ubuntu1804/Vagrantfile b/distro/tests/ubuntu1804/Vagrantfile new file mode 100644 index 000000000..6b395f966 --- /dev/null +++ b/distro/tests/ubuntu1804/Vagrantfile @@ -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-dns" do |machine| + machine.vm.provision "ansible" do |ansible| + ansible.playbook = "../knot-dns-test.yaml" + end + end + +end |