core-admin/qubes/vm/templatevm.py

14 lines
290 B
Python
Raw Normal View History

2014-11-13 14:38:41 +01:00
#!/usr/bin/python2 -O
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'''
template = qubes.property('template',
setter=qubes.property.forbidden)
2014-11-13 14:38:41 +01:00
def __init__(self, D):
super(TemplateVM, self).__init__(D)