virtManager.clone: don't generate default clone_path for some storage pools

Libvirt doesn't support creating volumes for some storage pools,
don't generate default clone_path for these storage pools.

Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1420190

Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
This commit is contained in:
Pavel Hrdina 2017-03-06 09:28:51 +01:00 committed by Cole Robinson
parent 79baf8e30c
commit 31e923dbdf

View File

@ -116,6 +116,14 @@ def do_we_default(conn, vol, path, ro, shared, devtype):
elif not vol and path and not os.access(path, os.W_OK):
info = append_str(info, _("No write access"))
pool_type = vol.get_parent_pool().get_type()
if pool_type == virtinst.StoragePool.TYPE_SCSI:
info = append_str(info, _("SCSI device"))
elif pool_type == virtinst.StoragePool.TYPE_DISK:
info = append_str(info, _("Disk device"))
elif pool_type == virtinst.StoragePool.TYPE_ISCSI:
info = append_str(info, _("iSCSI share"))
if shared:
info = append_str(info, _("Shareable"))