blob: 48668ca47d0c85c26e165fa495b8ec9e80e915e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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)
return 1
end
end
end
# $Id$
|