2014-11-13 14:38:41 +01:00
|
|
|
#!/usr/bin/python2 -O
|
|
|
|
|
2014-12-05 14:58:05 +01:00
|
|
|
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-12-05 14:58:05 +01:00
|
|
|
|
2014-11-13 14:38:41 +01:00
|
|
|
def __init__(self, D):
|
|
|
|
super(TemplateVM, self).__init__(D)
|
2014-12-29 12:46:16 +01:00
|
|
|
|
|
|
|
# Some additional checks for template based VM
|
|
|
|
assert self.root_img is not None, "Missing root_img for standalone VM!"
|