summaryrefslogtreecommitdiffstats
path: root/lib/puppet/network/handler/status.rb
blob: 774c49f6dea000a48833d30d2d8132e782724324 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Puppet::Network::Handler
    class Status < Handler
        @interface = XMLRPC::Service::Interface.new("status") { |iface|
            iface.add_method("int status()")
        }

        def status(client = nil, clientip = nil)
            return 1
        end
    end
end

# $Id$