Sha256: db6148f89ddefd7a73e02dd8d08350ab52933db8cf5aedc5ba91522374753e01
Contents?: true
Size: 498 Bytes
Versions: 11
Compression:
Stored size: 498 Bytes
Contents
module Fog module Libvirt class Compute class Real def clone_volume (pool_name, xml, name) vol = client.lookup_storage_pool_by_name(pool_name).lookup_volume_by_name(name) client.lookup_storage_pool_by_name(pool_name).create_vol_xml_from(xml, vol) end end class Mock def clone_volume(pool_name, xml, name) Fog::Libvirt::Compute::Volume.new({:pool_name => pool_name, :xml => xml}) end end end end end
Version data entries
11 entries across 11 versions & 2 rubygems