mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-13 02:30:11 +01:00
makebuildserver: fix lookup logic for needs_mutate
This commit is contained in:
parent
e8bad73ae4
commit
6266c33027
@ -520,14 +520,9 @@ def main():
|
||||
yaml.dump(config, f)
|
||||
|
||||
if config['vm_provider'] == 'libvirt':
|
||||
found_basebox = False
|
||||
needs_mutate = False
|
||||
for box in v.box_list():
|
||||
if box.name == config['basebox']:
|
||||
found_basebox = True
|
||||
if box.provider != 'libvirt':
|
||||
needs_mutate = True
|
||||
continue
|
||||
available_providers = [x.provider for x in v.box_list() if x.name == config['basebox']]
|
||||
found_basebox = len(available_providers) > 0
|
||||
needs_mutate = 'libvirt' not in available_providers
|
||||
if not found_basebox:
|
||||
if isinstance(config['baseboxurl'], str):
|
||||
baseboxurl = config['baseboxurl']
|
||||
|
Loading…
Reference in New Issue
Block a user