diff options
Diffstat (limited to 'deploy/environments/execution_environment.py')
-rw-r--r-- | deploy/environments/execution_environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy/environments/execution_environment.py b/deploy/environments/execution_environment.py index af0e130dd..7a0b4744e 100644 --- a/deploy/environments/execution_environment.py +++ b/deploy/environments/execution_environment.py @@ -46,7 +46,7 @@ class ExecutionEnvironment(object): disk_files.append(source_file) log('Deleting VM %s with disks %s' % (vm_name, disk_files)) exec_cmd('virsh destroy %s' % vm_name, False) - exec_cmd('virsh undefine %s' % vm_name, False) + exec_cmd('virsh undefine --managed-save --remove-all-storage %s' % vm_name, False) for file in disk_files: delete(file) |