Forge Home

repoforge

RepoForge Repository

34,498 downloads

29,041 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

  • 1.0.3 (latest)
  • 1.0.2
  • 1.0.1
  • 1.0.0
released Nov 18th 2015
This version is compatible with:
  • Puppet Enterprise >= 3.0.0
  • Puppet >= 3.0.0
  • , ,

Start using this module

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

Add this module to your Puppetfile:

mod 'm0byd1ck-repoforge', '1.0.3'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add m0byd1ck-repoforge
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install m0byd1ck-repoforge --version 1.0.3

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

m0byd1ck/repoforge — version 1.0.3 Nov 18th 2015

Puppet RepoForge Module

Table of Contents

  1. Description
  2. Setup
  3. Usage
  4. Limitations
  5. Development
  6. Further Information

Description

This module will install the repoforge repository

The following repo will be setup and enabled by default:

  • rpmforge

Other repositories that will setup but disabled

  • rpmforge-extras
  • rpmforge-testing

Setup

Setup Requirements

None

Beginning with repoforge module

include repoforge

Usage

class {'repoforge':
    repoforge           => [
        'enabled'    => '1',
        'gpgcheck'   => '1',
        'baseurl'    => "http://apt.sw.be/redhat/el7/en/x86_64/rpmforge",
        'mirrorlist' => "http://mirrorlist.repoforge.org/el7/mirrors-rpmforge",
        'include'    => ['package1', 'package*'],
        'exclude'    => ['package1', 'package*']
      ],
      repoforge_extras  => [
        'enabled'    => '0',
        'gpgcheck'   => '1',
        'baseurl'    => "http://apt.sw.be/redhat/el7/en/x86_64/extras",
        'mirrorlist' => "http://mirrorlist.repoforge.org/el7/mirrors-rpmforge-extras",
        'include'    => ['package1', 'package*'],
        'exclude'    => ['package1', 'package*']
      ],
      repoforge_testing => [
        'enabled'    => '0',
        'gpgcheck'   => '1',
        'baseurl'    => "http://apt.sw.be/redhat/el7/en/x86_64/testing",
        'mirrorlist' => "http://mirrorlist.repoforge.org/el7/mirrors-rpmforge-testing",
        'include'    => ['package1', 'package*'],
        'exclude'    => ['package1', 'package*']
      ]
}

Limitations

  • This was tested using Puppet 3.8.2 on CentOS 7
  • Use at your own risk, I do not offer any guarantee or warranty

Development

Please create a pull request via GitHub

Further Information