13 lines
245 B
Python
Executable File
13 lines
245 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
from qubesadmin import Qubes
|
|
|
|
def main():
|
|
app = Qubes()
|
|
for vm in app.domains:
|
|
if vm.klass == 'DispVM' and not vm.is_running():
|
|
if vm.auto_cleanup:
|
|
del app.domains[vm.name]
|
|
|
|
main()
|