core-admin/qubes/vm/templatevm.py

14 lines
342 B
Python
Raw Normal View History

2014-11-13 14:38:41 +01:00
#!/usr/bin/python2 -O
import qubes
2014-11-13 14:38:41 +01:00
import qubes.vm.qubesvm
class TemplateVM(qubes.vm.qubesvm.QubesVM):
2014-11-13 18:10:27 +01:00
'''Template for AppVM'''
2014-11-13 14:38:41 +01:00
def __init__(self, D):
super(TemplateVM, self).__init__(D)
# Some additional checks for template based VM
assert self.root_img is not None, "Missing root_img for standalone VM!"