Re: [PATCH virt-manager]: storage: fix default storage pool lookup

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 08/12/2015 06:00 PM, Charles Arnold wrote:
> virt-convert fails when the storage pool is already present but
> is not called 'default'.
> 
> If the 'default' pool has been removed but another pool uses the
> default location of /var/lib/libvirt/images virt-convert will fail
> to find the pool and attempt to create another one with the same
> path. This causes the conversion to fail.
> 
> Signed-off-by: Charles Arnold <carnold@xxxxxxxx>
> 
> diff --git a/virtinst/storage.py b/virtinst/storage.py
> index 285acb8..ea5eab8 100644
> --- a/virtinst/storage.py
> +++ b/virtinst/storage.py
> @@ -209,10 +209,13 @@ class StoragePool(_StorageObject):
>          try:
>              pool = conn.storagePoolLookupByName(name)
>          except libvirt.libvirtError:
> +            # Try default pool path when "default" name fails
> +            pool = StoragePool.lookup_pool_by_path(conn, path)
>              pass
>  
>          if pool:
> -            return
> +            # This is a libvirt pool object so create a StoragePool from it
> +            return StoragePool(conn, parsexml=pool.XMLDesc(0))
>  
>          try:
>              logging.debug("Attempting to build default pool with target '%s'",

Make sense, pushed now, but with the now redundant 'pass' dropped

(sorry for the delay, I've been offline for weeks)

Thanks,
Cole

_______________________________________________
virt-tools-list mailing list
virt-tools-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/virt-tools-list



[Index of Archives]     [Linux Virtualization]     [KVM Development]     [CentOS Virtualization]     [Netdev]     [Ethernet Bridging]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite Forum]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]     [Video 4 Linux]

  Powered by Linux