]> review.fuel-infra Code Review - packages/trusty/mcollective.git/blob - plugins/mcollective/registration/agentlist.rb
mcollective repackaged for 7.0
[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