buildserver: hard code basebox name and version

This is not user-configurable, so it should not be setup to be.  This
process is only tested on the one basebox, and devs can just edit
Vagrantfile directly to test other base boxes.

# Conflicts:
#	makebuildserver
This commit is contained in:
Hans-Christoph Steiner 2022-10-19 15:03:07 +02:00
parent abdd02f33a
commit e2fcd633fc
No known key found for this signature in database
GPG key ID: 3E177817BA1B9BFA
3 changed files with 14 additions and 52 deletions

View file

@ -19,10 +19,7 @@ Vagrant.configure("2") do |config|
config.cache.enable :chef
end
config.vm.box = configfile['basebox']
if configfile.has_key? "basebox_version"
config.vm.box_version = configfile['basebox_version']
end
config.vm.box = "fdroid/bullseye64"
if not configfile.has_key? "vm_provider" or configfile["vm_provider"] == "virtualbox"
# default to VirtualBox if not set