Forge Home

rabbitmq

RabbitMQ Puppet Module

3,786,275 downloads

268,811 latest version

3.0 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 5.6.0 (latest)
  • 5.5.0
  • 5.4.0
  • 5.3.1
  • 5.3.0 (deleted)
  • 5.2.3
  • 5.2.2
  • 5.2.1
  • 5.2.0
  • 5.1.0
  • 5.0.0
  • 4.1.0
  • 4.0.0
  • 3.1.0
  • 3.0.0
  • 3.0.0-rc2 (pre-release)
  • 3.0.0-rc1 (pre-release)
  • 2.1.0
  • 2.0.2
  • 2.0.1
  • 1.0.4
  • 1.0.3
released Apr 8th 2011
This module has been deprecated by its author since Sep 7th 2017.

The reason given was: This module has been moved to the care of Vox Pupuli where it is now being maintained and updated.

The author has suggested puppet-rabbitmq as its replacement.

Start using this module

Documentation

puppetlabs/rabbitmq — version 1.0.4 Apr 8th 2011

RabbitMQ Puppet Module

Jeff McCune jeff@puppetlabs.com

This module manages the RabbitMQ Middleware service.

It is designed to work with MCollective.

This module is available on the Forge

RabbitMQ Packages are published in the Puppet Labs ProSvc repository at: yum.puppetlabs.com

Quick Start

class site::mcollective::middleware {

  $rabbitmq_plugins = [ 'amqp_client-2.3.1.ez', 'rabbit_stomp-2.3.1.ez' ]

  class { 'rabbitmq':
    config => template('rabbitmq/rabbitmq.conf'),
  }

  class { 'rabbitmq::service':
    ensure => running,
  }

  # Required for MCollective
  rabbitmq::plugin { $rabbitmq_plugins:
    ensure => present,
  }

}

TODO

  • Delete the default guest user account
  • Manage a mcollective user account in RabbitMQ.
  • Model user accounts as a defined resource type.