We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4354536 + 5ae3fa1 commit 423a3feCopy full SHA for 423a3fe
1 file changed
tools/audit.py
@@ -441,8 +441,9 @@ def clean_sliver_inconsistencies(self):
441
for instance in virsh_vms:
442
if instance not in os_vms:
443
results_4 = self.execute_ansible(inventory_path=inventory_location,
444
- playbook_path=vm_playbook_path,
445
- extra_vars={"operation": "delete", "host": str(host)},
+ playbook_path=f"{pb_dir}/worker_libvirt_operations.yml",
+ extra_vars={"operation": "delete", "host": str(host),
446
+ "kvmguest_name": instance},
447
ansible_python_interpreter=ansible_python_interpreter)
448
self.logger.info(f"Deleted instance: {instance}; result: {results_4.get_json_result_ok()}")
449
except Exception as e:
0 commit comments