Fix global properties handling

API name isn't 'mgmt.global.*' - discussed options are
'mgmt.global.property.*' or 'mgmt.property.*'. Lets settle on the
former.

QubesOS/qubes-issues#853
This commit is contained in:
Marek Marczykowski-Górecki 2017-03-09 02:04:29 +01:00
parent 4ffd44da49
commit 69396040fd
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -107,7 +107,7 @@ class QubesBase(qubesmgmt.base.PropertyHolder):
domains = None
def __init__(self):
super(QubesBase, self).__init__(self, 'mgmt.global.', 'dom0')
super(QubesBase, self).__init__(self, 'mgmt.global.property.', 'dom0')
self.domains = VMCollection(self)