summaryrefslogtreecommitdiffstats
path: root/lib/puppet/network/client/runner.rb
blob: a4596a7533e4cc0d42bc6bcb68af7a7360ae0722 (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