blob: 9bedf23743e6ea5fc82b1adfdb219d9cebc409d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
class Puppet::Client::Runner < Puppet::Client::ProxyClient
@drivername = :Runner
# set up the appropriate interface methods
@handler = Puppet::Server::Runner
self.mkmethods
def initialize(hash = {})
if hash.include?(:Runner)
hash[:Runner] = Puppet::Server::Runner.new()
end
super(hash)
end
end
# $Id$
|