vm/adminvm: mark AdminVM as updateable

This commit is contained in:
Marek Marczykowski-Górecki 2019-03-26 01:19:34 +01:00
parent 4234fe5112
commit 4f71e9775f
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -54,6 +54,12 @@ class AdminVM(qubes.vm.BaseVM):
default=True, type=bool,
doc='If this domain is to be included in default backup.')
updateable = qubes.property('updateable',
default=True,
type=bool,
setter=qubes.property.forbidden,
doc='True if this machine may be updated on its own.')
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)