core-admin/qubes/vm/appvm.py

24 lines
691 B
Python
Raw Normal View History

2014-11-13 14:38:41 +01:00
#!/usr/bin/python2 -O
2015-01-19 18:03:23 +01:00
# vim: fileencoding=utf-8
2014-11-13 14:38:41 +01:00
import qubes.events
2014-11-13 14:38:41 +01:00
import qubes.vm.qubesvm
class AppVM(qubes.vm.qubesvm.QubesVM):
2014-11-13 18:10:27 +01:00
'''Application VM'''
template = qubes.VMProperty('template', load_stage=4,
vmclass=qubes.vm.templatevm.TemplateVM,
2015-01-23 18:37:40 +01:00
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):
# pylint: disable=unused-argument
# Some additional checks for template based VM
assert self.template
#self.template.appvms.add(self) # XXX