b623a71d87
This got split to qubes.Qubes and qubes.VMCollection. From now on, VMCollection is a stupid bag. Some parts went elsewhere.
14 lines
290 B
Python
14 lines
290 B
Python
#!/usr/bin/python2 -O
|
|
|
|
import qubes
|
|
import qubes.vm.qubesvm
|
|
|
|
class TemplateVM(qubes.vm.qubesvm.QubesVM):
|
|
'''Template for AppVM'''
|
|
|
|
template = qubes.property('template',
|
|
setter=qubes.property.forbidden)
|
|
|
|
def __init__(self, D):
|
|
super(TemplateVM, self).__init__(D)
|