Sha256: fede16f17b1549c71d1ac7085be57170807e725612f5379ae219b17e46176d09
Contents?: true
Size: 515 Bytes
Versions: 1
Compression:
Stored size: 515 Bytes
Contents
class Puppet::Client::CA < Puppet::Client::ProxyClient @drivername = :CA # set up the appropriate interface methods @handler = Puppet::Server::CA self.mkmethods def initialize(hash = {}) if hash.include?(:CA) if hash[:CA].is_a? Hash hash[:CA] = Puppet::Server::CA.new(hash[:CA]) else hash[:CA] = Puppet::Server::CA.new() end end super(hash) end end # $Id: ca.rb 1160 2006-05-02 04:30:40Z luke $
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
puppet-0.18.4 | lib/puppet/client/ca.rb |