[cloudstack] skip ssl verification

This commit is contained in:
geemus 2012-03-18 17:25:29 -05:00
parent 320d0e4111
commit e7ed695fc2
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ module Fog
@path = options[:cloudstack_path] || '/client/api'
@port = options[:cloudstack_port] || 443
@scheme = options[:cloudstack_scheme] || 'https'
@connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}#{@path}", options[:cloudstack_persistent])
@connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}#{@path}", options[:cloudstack_persistent], {:ssl_verify_peer => false})
end
def reload