Forge Home

squash_tm

Install squash_tm

5,403 downloads

4,097 latest version

5.0 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.1.2 (latest)
  • 0.1.1
  • 0.1.0
released Jun 10th 2019
This version is compatible with:
  • Puppet Enterprise 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >= 4.7.0 < 6.0.0

Start using this module

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

Add this module to your Puppetfile:

mod 'romgo-squash_tm', '0.1.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add romgo-squash_tm
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install romgo-squash_tm --version 0.1.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

Documentation

romgo/squash_tm — version 0.1.2 Jun 10th 2019

squash_tm

Build Status

Table of Contents

  1. Description
  2. Setup - The basics of getting started with squash_tm
  3. Usage - Configuration options and additional functionality
  4. Limitations - OS compatibility, etc.
  5. Development - Guide for contributing to the module

Description

This module install squash-tm software on Debian 9 https://www.squashtest.org/

Setup

What squash_tm affects OPTIONAL

  • /etc/default/squash configuration file
  • Add apt repository and key
  • Install squash-tm package

Setup Requirements OPTIONAL

For external database you need to create an empty db and load the db files first ie :

cd /usr/share/dbconfig-common/data/squash-tm/install/
psql -h dbserver -p 5432 -U squashtm -W squashtm < pgsql

Usage

Simply include/contain/required/declare the squash_tm class :

include 'squash_tm'

It includes a few sane defaults, so it should work out of the box. However, we recommend that you declare the class and override a few parameters:

  • In the module
class { 'squash_tm':
     apt_proxy => 'http://myproxy.domain.local:3128'
     db        => 'postgresql'
}
  • In hieradata
squash_tm::apt_proxy: http://myproxy.domain.local:3128
squash_tm::db: postgresql
squash_tm::db_username: squashtm
squash_tm::db_password: mypassword
squash_tm::db_server: mydbserver
squash_tm::db_port: 5432

Limitations

Only tested for Debian 9 with puppet 5. Currently this module doesn't support upgrade of squash-tm and set on held the squash-tm package.

Development

If you want to improve this module, send us a patch of pull request!

TO DO :

  • add support for other OS
  • add option for managing apache2 frontend,
  • find a way to automatically load data into remote DB,
  • add option for deploying local DB (postgresql or mysql)
  • add some rspec test