core-admin/qubes/vm/appvm.py

19 lines
491 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.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,
doc='Template, on which this AppVM is based.')
2014-11-13 14:38:41 +01:00
def __init__(self, D):
super(AppVM, self).__init__(D)
# Some additional checks for template based VM
assert self.template
self.template.appvms.add(self)