Skip to content

Instantly share code, notes, and snippets.

@mwhagedorn
Created April 15, 2014 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mwhagedorn/10743517 to your computer and use it in GitHub Desktop.
Save mwhagedorn/10743517 to your computer and use it in GitHub Desktop.
module Fog
module HpTng
class Identity
def self.new(options)
Fog::OpenStackCommon::Identity.new(
customize_options(options)
)
end
def self.customize_options(options)
opts = options.dup
opts.merge!(:base_provider => Fog::HpTng)
opts
end
end
end
end
@mwhagedorn
Copy link
Author

HPTng Proxy Class

@mwhagedorn
Copy link
Author

ok so I dont really need the customize options anymore... there used to be a metric crap ton of things in it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment