Change source structure according to OSCI-991
[packages/precise/mcollective.git] / mcollective-2.3.3 / plugins / mcollective / registration / agentlist.rb
1 module MCollective
2   module Registration
3     # A registration plugin that simply sends in the list of agents we have
4     class Agentlist<Base
5       def body
6         Agents.agentlist
7       end
8     end
9   end
10 end