Forge Home

racktables

Module to install RackTables asset management system.

10,395 downloads

10,075 latest version

3.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.2 (latest)
  • 0.0.1
released Dec 1st 2013

Start using this module

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

Add this module to your Puppetfile:

mod 'illuminatis-racktables', '0.0.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add illuminatis-racktables
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install illuminatis-racktables --version 0.0.2

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: racktables

Documentation

illuminatis/racktables — version 0.0.2 Dec 1st 2013

RackTables module for Puppet

Puppet module to manage RackTables installation. This module clones git repository to demanded location, inits database (or leaves it for manual initialization via web) and provides simple vhost for apache (httpd) and nginx. Module installs necessary PHP dependencies.

For an automated version default credentials are: login: admin password: admin

Usage

Gets RackTables from git repo, set apache vhost and continue installation via web:

class { 'racktables':
  install_dir    => '/var/www/htdocs/racktables',
  use_installer  => true,
}

Get RackTables from git repo, set nginx vhost (with your server_name), install all PHP dependencies, create proper secret.php and init database automatically:

class { 'racktables':
  install_dir    => '/var/www/htdocs/racktables',
  install_deps   => 'all',
  web_server     => 'nginx',
  server_name    => 'racktables.example.com',
  db_name        => 'racktables_db',
  db_host        => 'localhost',
  db_username    => 'racktables_user',
  db_password    => 'racktables_pass',
}

Assumptions

  • module assumes you have already created MySQL database (probably via mysql module)

Supported platforms

  • RHEL/CentOS
  • Ubuntu

TODO

  • SSL option for the vhost config.
  • tests? :)