Forge Home

rt

Puppet module of managing Request Tracker

11,488 downloads

10,265 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

  • 0.0.7 (latest)
  • 0.0.6
  • 0.0.4 (deleted)
  • 0.0.3 (deleted)
  • 0.0.2 (deleted)
  • 0.0.1 (deleted)
released Nov 5th 2013

Start using this module

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

Add this module to your Puppetfile:

mod 'darin-rt', '0.0.7'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add darin-rt
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install darin-rt --version 0.0.7

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

darin/rt — version 0.0.7 Nov 5th 2013

puppet-rt

Overview

Installs and allows you to easily manage Request Tracker with Puppet

Module Description

Request Tracker (RT) is an enterprise-grade ticketing system which enables a group of people to intelligently and efficiently manage tasks, issues, and requests submitted by a community of users. It features a web, email and command-line interfaces.

The rt modules allow you to manage request tracker packages and extensions, if they are available, on several operating systems, as well as basic queue creation.

Basic Usage

To install Request Tracker

class { "rt": dbtype => "postgres" }

To install the Request Tracker RT::Authen::ExternalAuth extension

class { "rt::ext::externalauth": }

To install Request Tracker mailgate

class { "rt::mailgate": }

Create a Request Tracker queue

!NOTICE! Your RT root user's password will be exposed in your puppet manifest. Ensure site.pp and or node configuration is properly secured so only puppet can read it.

Configure the rt command line tool

class { "rt::tool": 
    rt_user     => "root",
    rt_passwd   => "password"
    rt_server   => "http://rt.domain.com"
 }

Define your queue

rt::queue { "queue1":
    description     => "RT queue 1",
    reply_email     => "rtq1@domain.com",
    comment_email   => "rtq1-comments@domain.com"
}

Requirements outside this module

The following depencencies are required by this module.

  • Apache

Request Tracker requires either Apache mod_perl or mod_fcgid.

If using this with puppetlabs-apache you'll need to set one of the following in your node manifest.

class { "apache::mod::perl": }

OR

class { "apache::mod::fcgid": }

puppetlabs-apache is not a dependency of this module because it requires puppetlabs/firewall which only supports Redhat and Debian systems.

  • Database

Setting up the database is outside the scope of this module. Perhaps one of the mysql or postgres modules can simplify this task for you.

  • Request Tracker

We do not touch RT_SiteConfig.pm at this time, other then ensuring it's permissions.

  • Email aliases, maps, etc.

Setting up aliases, maps, etc is outside the scope of this module at this time. Perhaps one of the postfix or sendmail modules can simplify this task.

Contributors

Copyright and License

Copyright (C) 2012 Darin Perusich darin@darins.net

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.