Volume add size property wrapper
This commit is contained in:
parent
ae72e294cd
commit
b863152f73
@ -96,7 +96,7 @@ class Volume(object):
|
||||
self.revisions_to_keep = revisions_to_keep
|
||||
self.rw = rw
|
||||
self.save_on_stop = save_on_stop
|
||||
self.size = int(size)
|
||||
self._size = int(size)
|
||||
self.snap_on_start = snap_on_start
|
||||
self.source = source
|
||||
self.vid = vid
|
||||
@ -133,6 +133,10 @@ class Volume(object):
|
||||
msg = "{!s} has revisions not implemented".format(self.__class__)
|
||||
raise NotImplementedError(msg)
|
||||
|
||||
@property
|
||||
def size(self):
|
||||
return self._size
|
||||
|
||||
@property
|
||||
def config(self):
|
||||
''' return config data for serialization to qubes.xml '''
|
||||
|
Loading…
Reference in New Issue
Block a user