Sha256: 1a7d10d70d3cf8565897cd570f3c27166ce5b7ec331da8200ed710be0b52bd3f

Contents?: true

Size: 681 Bytes

Versions: 28

Compression:

Stored size: 681 Bytes

Contents

module MCollective
  # Registration is implimented using a module structure and installations can
  # configure which module they want to use.
  #
  # We provide a simple one that just sends back the list of current known agents
  # in MCollective::Registration::Agentlist, you can create your own:
  #
  # Create a module in plugins/mcollective/registration/<yourplugin>.rb
  #
  # You can inherit from MCollective::Registration::Base in which case you just need
  # to supply a _body_ method, whatever this method returns will be send to the
  # middleware connection for an agent called _registration_
  module Registration
    require "mcollective/registration/base"
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
mcollective-client-2.9.1 lib/mcollective/registration.rb
mcollective-client-2.9.0 lib/mcollective/registration.rb
mcollective-client-2.8.9 lib/mcollective/registration.rb
mcollective-client-2.8.4 lib/mcollective/registration.rb
mcollective-client-2.8.3 lib/mcollective/registration.rb
mcollective-client-2.8.2 lib/mcollective/registration.rb
mcollective-client-2.8.1 lib/mcollective/registration.rb
mcollective-client-2.8.0 lib/mcollective/registration.rb