1
0
Fork 0

Use global variable to set the OS under testing

This commit is contained in:
Daniele Tricoli 2021-05-28 18:58:11 +02:00
parent 132ccd9f1f
commit 0e8a173676
1 changed files with 3 additions and 3 deletions

6
tests/Vagrantfile vendored
View File

@ -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|