Skip to content
Snippets Groups Projects
Commit 48275d45 authored by MJB's avatar MJB
Browse files

new delete vm script

parent bf938561
No related branches found
No related tags found
No related merge requests found
......@@ -37,11 +37,8 @@ for vm in lines:
proc = subprocess.Popen(['vboxmanage', 'controlvm', vm_id, 'poweroff'], stdout=subprocess.PIPE, shell=True)
out, err = proc.communicate()
print(out)
if proc.returncode != 0:
print("Could not power off VM: {0}".format(vm_id))
proc = subprocess.Popen(['vboxmanage', 'unregistervm', vm_id, '--delete'], stdout=subprocess.PIPE, shell=True)
out, err = proc.communicate()
if proc.returncode != 0:
print("Could not unregister VM: {0}".format(vm_id))
print(out)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment