From 0e8a1736766638f9ff0faec33ff6ff6225657d51 Mon Sep 17 00:00:00 2001 From: Daniele Tricoli Date: Fri, 28 May 2021 18:58:11 +0200 Subject: [PATCH] Use global variable to set the OS under testing --- tests/Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Vagrantfile b/tests/Vagrantfile index 5970152..aeceb19 100644 --- a/tests/Vagrantfile +++ b/tests/Vagrantfile @@ -1,8 +1,8 @@ -# -*- mode: ruby -*- -# vi: set ft=ruby : +# OS_TO_TEST = "debian/buster64" +OS_TO_TEST = "debian/bullseye64" Vagrant.configure("2") do |config| - config.vm.box = "debian/buster64" + config.vm.box = OS_TO_TEST config.vm.network "private_network", ip: "10.10.10.10" config.vm.provision "ansible" do |ansible|