Added mcollective 2.3.1 package
[packages/trusty/mcollective.git] / 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