Forge Home

scl

Manages SCL collections for RedHat/CentOS 6 & 7

9,281 downloads

8,973 latest version

4.6 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 Sep 11th 2015
This version is compatible with:
  • ,

Start using this module

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

Add this module to your Puppetfile:

mod 'garbetjie-scl', '0.0.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add garbetjie-scl
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install garbetjie-scl --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

Documentation

garbetjie/scl — version 0.0.2 Sep 11th 2015

garbetjie-scl

Warning

Even though I am currently using this module, there are no tests set up for it yet. Please be aware that this module is used at your own risk!

Overview

Manages Software Collections in RedHat/CentOS 6 & 7.

Usage

Install SCL (without registering any collections):

include ::scl

Register preset collections:

include ::scl
include ::scl::collections::python33
include ::scl::collections::v8314

Register custom collection:

include ::scl
::scl::collection { 'reponame':
    repo_baseurl => 'http://example.com/repo',
    repo_descr => 'Repository description.',
    repo_ensure => 'present',
    repo_gpgcheck => 0,
    repo_enabled => 1,
    os_versions => [ 6, 7 ],
    package_install => [ 'packagename', 'packagename-*' ],
}

Available collections