Sha256: cacdab947de5e91fbabfc67c2e47db9997c62c7ff516be413d286a58cd975b2c
Contents?: true
Size: 329 Bytes
Versions: 110
Compression:
Stored size: 329 Bytes
Contents
module Fog module Compute class Libvirt class Real def vm_action(uuid, action) domain = client.lookup_domain_by_uuid(uuid) domain.send(action) true end end class Mock def vm_action(uuid, action) true end end end end end
Version data entries
110 entries across 110 versions & 17 rubygems