mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-25 15:45:23 +00:00
convert default_image_owner to seperate guid and uid
This commit is contained in:
parent
25e6381fc9
commit
37b5093e13
2 changed files with 4 additions and 5 deletions
|
@ -233,7 +233,7 @@ class wvmStorage(wvmConnect):
|
||||||
<lazy_refcounts/>
|
<lazy_refcounts/>
|
||||||
</features>
|
</features>
|
||||||
</target>
|
</target>
|
||||||
</volume>""" % (name, size, alloc, vol_fmt, owner, owner)
|
</volume>""" % (name, size, alloc, vol_fmt, owner['uid'], owner['guid'])
|
||||||
self._createXML(xml, metadata)
|
self._createXML(xml, metadata)
|
||||||
|
|
||||||
def clone_volume(self, name, target_file, vol_fmt=None, metadata=False, owner=owner):
|
def clone_volume(self, name, target_file, vol_fmt=None, metadata=False, owner=owner):
|
||||||
|
@ -261,5 +261,5 @@ class wvmStorage(wvmConnect):
|
||||||
<lazy_refcounts/>
|
<lazy_refcounts/>
|
||||||
</features>
|
</features>
|
||||||
</target>
|
</target>
|
||||||
</volume>""" % (target_file, vol_fmt, owner,owner)
|
</volume>""" % (target_file, vol_fmt, owner['uid'],owner['guid'])
|
||||||
self._createXMLFrom(xml, vol, metadata)
|
self._createXMLFrom(xml, vol, metadata)
|
||||||
|
|
|
@ -19,7 +19,6 @@ INSTALLED_APPS = (
|
||||||
'django.contrib.sessions',
|
'django.contrib.sessions',
|
||||||
'django.contrib.messages',
|
'django.contrib.messages',
|
||||||
'django.contrib.staticfiles',
|
'django.contrib.staticfiles',
|
||||||
'dashboards',
|
|
||||||
'computes',
|
'computes',
|
||||||
'console',
|
'console',
|
||||||
'networks',
|
'networks',
|
||||||
|
@ -153,5 +152,5 @@ VIEW_INSTANCES_LIST_STYLE = 'grouped'
|
||||||
INSTANCE_VOLUME_DEFAULT_FORMAT = 'qcow2'
|
INSTANCE_VOLUME_DEFAULT_FORMAT = 'qcow2'
|
||||||
INSTANCE_VOLUME_DEFAULT_BUS = 'virtio'
|
INSTANCE_VOLUME_DEFAULT_BUS = 'virtio'
|
||||||
INSTANCE_VOLUME_DEFAULT_CACHE = 'directsync'
|
INSTANCE_VOLUME_DEFAULT_CACHE = 'directsync'
|
||||||
# up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)
|
# [uid,guid] values are up to os, 0=root, 107=qemu or libvirt-bin(for ubuntu)
|
||||||
INSTANCE_VOLUME_DEFAULT_OWNER = 0
|
INSTANCE_VOLUME_DEFAULT_OWNER = [107, 107]
|
Loading…
Reference in a new issue