summaryrefslogtreecommitdiffstats
path: root/lib/puppet/network/client/runner.rb
blob: c6ba328b4709cc0beb0bb6613f97d4b30038c925 (plain)
1
2
3
4
5
6
7
8
9
10
class Puppet::Network::Client::Runner < Puppet::Network::Client::ProxyClient
    self.mkmethods

    def initialize(hash = {})
        hash[:Runner] = self.class.handler.new() if hash.include?(:Runner)

        super(hash)
    end
end