add bin/cloudstack back in to get ci on track

This commit is contained in:
geemus 2021-04-11 11:16:37 -05:00
parent 045224a06c
commit 797b89fcb1
1 changed files with 28 additions and 0 deletions

28
lib/fog/bin/cloudstack.rb Normal file
View File

@ -0,0 +1,28 @@
class Cloudstack < Fog::Bin
class << self
def class_for(key)
case key
when :compute
Fog::Compute::Cloudstack
else
raise ArgumentError, "Unrecognized service: #{key}"
end
end
def [](service)
@@connections ||= Hash.new do |hash, key|
hash[key] = case key
when :compute
Fog::Compute.new(:provider => 'Cloudstack')
else
raise ArgumentError, "Unrecognized service: #{key.inspect}"
end
end
@@connections[service]
end
def services
Fog::Cloudstack.services
end
end
end