core-admin/qubes/vm/appvm.py
2015-06-29 17:39:28 +02:00

20 lines
512 B
Python

#!/usr/bin/python2 -O
# vim: fileencoding=utf-8
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, D):
super(AppVM, self).__init__(D)
# Some additional checks for template based VM
assert self.template
self.template.appvms.add(self)