1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-02 09:10:11 +02:00

Merge branch 'fix_vagrantfile' into 'master'

Set vm_provider in example Vagrantfile.yaml

See merge request fdroid/fdroidserver!1277
This commit is contained in:
Hans-Christoph Steiner 2023-02-08 21:17:23 +00:00
commit c5ba4bc848

View File

@ -84,6 +84,9 @@ if not os.path.exists(configfile):
shutil.copy('examples/Vagrantfile.yaml', configfile)
with open(configfile) as fp:
config = yaml.safe_load(fp)
if not isinstance(config, dict):
logging.info("config is empty or not a dict, using default.")
config = {}
with open('buildserver/Vagrantfile') as fp:
m = re.search(r"""\.vm\.box\s*=\s*["'](.*)["']""", fp.read())
if not m: