blob: 11989230cbc150d74a8801a45f7f700e73b5a9eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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$
|