Sha256: 7316c22e80d38d2575abd52468862b2fe209dfc306ff880736791a1d368e1991

Contents?: true

Size: 385 Bytes

Versions: 3

Compression:

Stored size: 385 Bytes

Contents

class Puppet::Client::CAClient < Puppet::Client::ProxyClient
    @drivername = :CA

    # set up the appropriate interface methods
    @handler = Puppet::Server::CA
    self.mkmethods

    def initialize(hash = {})
        if hash.include?(:CA)
            hash[:CA] = Puppet::Server::CA.new()
        end

        super(hash)
    end
end

# $Id: ca.rb 848 2006-01-24 06:01:58Z luke $

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
puppet-0.13.1 lib/puppet/client/ca.rb
puppet-0.13.0 lib/puppet/client/ca.rb
puppet-0.13.2 lib/puppet/client/ca.rb