deploy: Fix: remove storage files explicitly 27/22927/1
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>
Mon, 10 Oct 2016 16:58:28 +0000 (18:58 +0200)
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>
Mon, 10 Oct 2016 17:04:05 +0000 (19:04 +0200)
Previous change [1] tried to move the responsibility of removing
storage files (raw, iso) from our python scripts to libvirt.

Although this works as expected for non-root invocations, like
Armband deploys, it fails to remove raw files in Fuel@OPNFV deploys.

Work around this by keeping both mechanisms (libvirt managed +
python explicit handling).

Related-bug: ARMBAND-128

[1] https://gerrit.opnfv.org/gerrit/#/c/22447

Change-Id: Ib846cd6071705b71d98824385835d724c729fd78
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
deploy/environments/execution_environment.py

index 3812902..7a0b474 100644 (file)
@@ -47,6 +47,8 @@ class ExecutionEnvironment(object):
         log('Deleting VM %s with disks %s' % (vm_name, disk_files))
         exec_cmd('virsh destroy %s' % vm_name, False)
         exec_cmd('virsh undefine --managed-save --remove-all-storage %s' % vm_name, False)
+        for file in disk_files:
+            delete(file)
 
     def overwrite_xml(self, vm_xml, vm_definition_overwrite):
         if not vm_definition_overwrite: