80d664441d
This is adapted from commit 90a50dca406e3d40c88ea338566e0460589df7a3.
48 lines
1.2 KiB
Python
48 lines
1.2 KiB
Python
#!/usr/bin/python2 -O
|
|
# vim: fileencoding=utf-8
|
|
|
|
import os.path
|
|
|
|
import qubes
|
|
import qubes.vm.qubesvm
|
|
|
|
class TemplateVM(qubes.vm.qubesvm.QubesVM):
|
|
'''Template for AppVM'''
|
|
|
|
@property
|
|
def rootcow_img(self):
|
|
'''COW image'''
|
|
return self.storage.rootcow_img
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(TemplateVM, self).__init__(*args, **kwargs)
|
|
|
|
# Some additional checks for template based VM
|
|
assert self.root_img is not None, "Missing root_img for standalone VM!"
|
|
|
|
|
|
def clone_disk_files(self, src):
|
|
super(QubesTemplateVm, self).clone_disk_files(src)
|
|
|
|
# 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()
|
|
|
|
|
|
@property
|
|
def rootcow_img(self):
|
|
return os.path.join(self.dir_path, qubes.config.vm_files['rootcow_img'])
|