]
Barak Korren reassigned OVIRT-1417:
-----------------------------------
Assignee: Barak Korren (was: infra)
mock_cleanup.sh script does not erash shut-down VMs well
--------------------------------------------------------
Key: OVIRT-1417
URL:
https://ovirt-jira.atlassian.net/browse/OVIRT-1417
Project: oVirt - virtualization made easy
Issue Type: Improvement
Components: oVirt CI
Reporter: Barak Korren
Assignee: Barak Korren
Priority: Highest
'{{mock_cleanup.sh}}' includes the following code to cleanup VMs:
{code}
for UUID in $(virsh list --all --uuid); do
virsh destroy $UUID || :
sleep 2
virsh undefine --remove-all-storage --storage vda --snapshots-metadata $UUID || :
done
{code}
This code probably worked at some point, but doesn't any more, instead if there are
shut down VMs left on the machine, we get this error message:
{code}
error: Specified both --storage and --remove-all-storage
{code}
Need to fix this, the following was verified to work:
{code}
virsh undefine --remove-all-storage --snapshots-metadata $UUID
{code}