Forge Home

confluence

Puppet module for Atlassian Confluence

9,918 downloads

9,509 latest version

3.1 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.1 (latest)
  • 1.0.0
released Feb 24th 2015
This version is compatible with:
  • Puppet 3.x

Start using this module

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

Add this module to your Puppetfile:

mod 'tohuwabohu-confluence', '1.0.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add tohuwabohu-confluence
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install tohuwabohu-confluence --version 1.0.1

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

Documentation

tohuwabohu/confluence — version 1.0.1 Feb 24th 2015

#confluence

##Overview

Puppet module to install and manage Atlassian Confluence (5.6 and above).

##Usage

Just install Confluence with all default values:

class { 'confluence': }

Install a more recent version:

class { 'confluence':
  version => '5.6.5',
  md5sum  => '....',
}

Tweak the database configuration:

class { 'confluence':
  db_url      => 'jdbc:postgresql://localhost:5432/confluence',
  db_driver   => 'org.postgresql.Driver',
  db_dialect  => 'net.sf.hibernate.dialect.PostgreSQLDialect',
  db_username => 'confluence',
  db_password => $db_password,
}

(note: the database configuration can only be managed once the initial setup has been completed and the relevant configuration file exists in the data directory).

##Limitations

The module has been tested on the following operating systems. Testing and patches for other platforms are welcome.

  • Debian Linux 7.0 (Wheezy)

Build Status

##Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

###Development

This project uses rspec-puppet and beaker to ensure the module works as expected and to prevent regressions.

gem install bundler
bundle install --path vendor

bundle exec rake spec
bundle exec rake beaker

(note: use RS_PROVISION=no and RS_DESTROY=no to control beaker default behaviour)