80d664441d
This is adapted from commit 90a50dca406e3d40c88ea338566e0460589df7a3.
23 lines
649 B
Python
23 lines
649 B
Python
#!/usr/bin/python2 -O
|
|
# vim: fileencoding=utf-8
|
|
|
|
import qubes.events
|
|
import qubes.vm.qubesvm
|
|
|
|
class AppVM(qubes.vm.qubesvm.QubesVM):
|
|
'''Application VM'''
|
|
|
|
template = qubes.VMProperty('template', load_stage=4,
|
|
vmclass=qubes.vm.templatevm.TemplateVM,
|
|
ls_width=31,
|
|
doc='Template, on which this AppVM is based.')
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(AppVM, self).__init__(*args, **kwargs)
|
|
|
|
@qubes.events.handler('domain-loaded')
|
|
def on_domain_loaded(self, event):
|
|
# Some additional checks for template based VM
|
|
assert self.template
|
|
#self.template.appvms.add(self) # XXX
|