Forge Home

qpid

Qpid Puppet Module

267,223 downloads

76,016 latest version

1.9 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

  • 1.0.3 (latest)
  • 1.0.2
  • 1.0.1
  • 1.0.0
released Sep 23rd 2015

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'dprince-qpid', '1.0.3'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add dprince-qpid
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install dprince-qpid --version 1.0.3

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download
Tags: redhat, rhel, fedora

Documentation

dprince/qpid — version 1.0.3 Sep 23rd 2015

Qpid Puppet Module

Dan Prince dprince@redhat.com

This module manages the Qpid.

examples:

class { 'qpid::server': }

qpid_user { 'foo': password => 'changeme', file => '/var/lib/qpidd/qpidd.sasldb', realm => 'TEST', provider => 'saslpasswd2', require => Class['qpid::server'], }

In order to configure NSS support, the nssdb module is required. qpid uses NSS as its SSL provider. There are two ways to configure SSL:

  1. Provide the path to PEM files containing the server certificate, private key and CA certificate. These will be loaded into an NSS database created by the nssdb module.

  2. If the server running qpid is enrolled as an IPA client then you can set ssl and freeipa to true and the certmonger daemon will request a certificate on your behalf. You will need to pre-create a service for qpid on the IPA server with: $ ipa service-add qpid/qpid.example.com You may still pass in PEM files even if IPA is configured. In that case leave freeipa as false.