blob: ec6a402a628996f7ef1dfd19bde3077ecdfeea27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class Puppet::Network::Handler
class Status < Handler
desc "A simple interface for testing Puppet connectivity."
side :client
@interface = XMLRPC::Service::Interface.new("status") { |iface|
iface.add_method("int status()")
}
def status(client = nil, clientip = nil)
1
end
end
end
|