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
|
|
|
|
2014-12-05 14:58:05 +01:00
|
|
|
import qubes
|
2015-09-25 16:50:09 +02:00
|
|
|
import qubes.config
|
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'''
|
2014-12-05 14:58:05 +01:00
|
|
|
|
2015-09-25 16:50:09 +02:00
|
|
|
dir_path_prefix = qubes.config.system_path['qubes_templates_dir']
|
|
|
|
|
2015-06-30 17:06:35 +02:00
|
|
|
@property
|
|
|
|
def rootcow_img(self):
|
|
|
|
'''COW image'''
|
|
|
|
return self.storage.rootcow_img
|
|
|
|
|
2016-04-20 02:28:11 +02:00
|
|
|
@property
|
|
|
|
def appvms(self):
|
|
|
|
for vm in self.app.domains:
|
|
|
|
if hasattr(vm, 'template') and vm.template is self:
|
|
|
|
yield vm
|
2015-06-30 17:06:35 +02:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2016-03-23 18:23:12 +01:00
|
|
|
assert 'template' not in kwargs, "A TemplateVM can not have a template"
|
2015-06-30 17:06:35 +02:00
|
|
|
super(TemplateVM, self).__init__(*args, **kwargs)
|
2014-12-29 12:46:16 +01:00
|
|
|
|
|
|
|
# Some additional checks for template based VM
|
2015-09-21 22:48:19 +02:00
|
|
|
# TODO find better way
|
|
|
|
# assert self.root_img is not None, "Missing root_img for standalone VM!"
|
2015-06-30 17:06:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
def clone_disk_files(self, src):
|
2015-10-05 23:46:25 +02:00
|
|
|
super(TemplateVM, self).clone_disk_files(src)
|
2015-06-30 17:06:35 +02:00
|
|
|
|
|
|
|
# Create root-cow.img
|
|
|
|
self.commit_changes()
|
|
|
|
|
|
|
|
|
|
|
|
def commit_changes(self):
|
|
|
|
'''Commit changes to template'''
|
|
|
|
self.log.debug('commit_changes()')
|
|
|
|
|
|
|
|
if not self.app.vmm.offline_mode:
|
|
|
|
assert not self.is_running(), \
|
|
|
|
'Attempt to commit changes on running Template VM!'
|
|
|
|
|
|
|
|
self.log.info(
|
|
|
|
'Commiting template update; COW: {}'.format(self.rootcow_img))
|
|
|
|
self.storage.commit_template_changes()
|