diff options
-rw-r--r-- | modules/libvirtd/files/storage_add.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/libvirtd/files/storage_add.py b/modules/libvirtd/files/storage_add.py index 88475ec6..5d95922d 100644 --- a/modules/libvirtd/files/storage_add.py +++ b/modules/libvirtd/files/storage_add.py @@ -24,5 +24,5 @@ storage_xml = """ </pool>""" % ( name, path ) c=libvirt.open("qemu:///system") -c.storagePoolCreateXML(storage_xml,0) +c.storagePoolDefineXML(storage_xml,0) |