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

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

        super(hash)
    end
end