Forge Home

redmine

Puppet Redmine Module

9,818 downloads

9,818 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.1 (latest)
released Aug 25th 2014

Start using this module

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

Add this module to your Puppetfile:

mod 'velaluqa-redmine', '1.0.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add velaluqa-redmine
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install velaluqa-redmine --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
Tags: rails, redmine

Documentation

velaluqa/redmine — version 1.0.1 Aug 25th 2014

Puppet-redmine

Puppet redmine installs redmine with puma::app (this one you have to install yourself).

Basic Usage

  class { 'redmine':
    app_root             = '/srv/redmine',
    redmine_source       = 'https://github.com/redmine/redmine.git',
    redmine_revision     = 'origin/2.3-stable',
    redmine_user         = 'deployment',
    db_adapter           = 'pgsql',
    db_name              = 'redminedb',
    db_user              = 'redminedbu',
    db_password          = 'changeme',
    db_host              = 'localhost',
    db_port              = '3306',
    rvm_ruby             = '1.9.3@redmine',
  }

Redmine Plugin

  redmine::plugin { 'redmine_backlogs':
    source   => 'git://github.com/backlogs/redmine_backlogs.git',
    revision => 'v1.0.6',
    migrate  => true,
    rake     => ['redmine:backlogs:install story_trackers=Bug,Feature,Support task_tracker=Task corruptiontest=true labels=true'],
  }

Parameters

  • app_root: Target directory for puma::app resource. (default: '/srv/redmine')
  • redmine_source: Source repository. (default: 'https://github.com/redmine/redmine.git')
  • redmine_revision: Branch or tag to be deployed. (default: 'origin/2.3-stable')
  • redmine_user: Owner of all redmine data and the user to run it under. (default: 'deployment')
  • db_adapter: Database adapter. (default: 'mysql')
  • db_name: Database name. (default: 'redminedb')
  • db_user: Database username. (default: 'redminedbu')
  • db_password: Database password. (default: 'changeme')
  • db_host: Database host. (default: 'localhost')
  • db_port: Database port. (default: '3306')
  • mail_delivery_method: Redmine mail delivery method. (default: 'sendmail')
  • mail_starttls: Redmine use starttls. (default: undefined)
  • mail_address: Mail server address. (default: undefined)
  • mail_port: Mail server port. (default: undefined)
  • mail_domain: Mail server domain. (default: undefined)
  • mail_authentication: Mail server authentication. (default: undefined)
  • mail_username: Mail server username. (default: undefined)
  • mail_password: Mail server password. (default: undefined)
  • rvm_ruby: Which ruby to use, per default RVM is not used. (default: '')

Dependencys

puppetlabs/vcsrepo >= 0.2.0

Contribute

Want to help - send a pull request.

License

This file is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version.

This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with GNU Emacs; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.