mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
add bin/cloudstack back in to get ci on track
This commit is contained in:
parent
045224a06c
commit
797b89fcb1
1 changed files with 28 additions and 0 deletions
28
lib/fog/bin/cloudstack.rb
Normal file
28
lib/fog/bin/cloudstack.rb
Normal 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
|
Loading…
Add table
Reference in a new issue