From: Tomas Krizek Date: Wed, 24 Oct 2018 11:45:10 +0000 (+0200) Subject: distro/tests: add Ubuntu 18.10 X-Git-Tag: v3.1.0~2^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9721becff15f0e5e6ccc93a0e18f27decc09801b;p=thirdparty%2Fknot-resolver.git distro/tests: add Ubuntu 18.10 --- diff --git a/distro/tests/knot-resolver-test.yaml b/distro/tests/knot-resolver-test.yaml index 82c04bfd7..3c9267a53 100644 --- a/distro/tests/knot-resolver-test.yaml +++ b/distro/tests/knot-resolver-test.yaml @@ -49,7 +49,7 @@ raw: | yum install -y python2 python2-dnf libselinux-python || \ pacman -Sy python2 --noconfirm || \ - apt-get install -y python || \ + (apt-get update && apt-get install -y python) || \ : ignore_errors: true - name: gather facts diff --git a/distro/tests/ubuntu1810/Vagrantfile b/distro/tests/ubuntu1810/Vagrantfile new file mode 100644 index 000000000..c763ea47e --- /dev/null +++ b/distro/tests/ubuntu1810/Vagrantfile @@ -0,0 +1,16 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : +# + +Vagrant.configure(2) do |config| + + config.vm.box = "generic/ubuntu1810" + config.vm.synced_folder ".", "/vagrant", disabled: true + + config.vm.define "ubuntu1810_knot-resolver" do |machine| + machine.vm.provision "ansible" do |ansible| + ansible.playbook = "../knot-resolver-test.yaml" + end + end + +end