Forge Home

centosrepos

Module for using CentOS repos

9,140 downloads

9,140 latest version

4.2 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.0 (latest)
released Apr 10th 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 'talamoig-centosrepos', '0.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add talamoig-centosrepos
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install talamoig-centosrepos --version 0.1.0

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

talamoig/centosrepos — version 0.1.0 Apr 10th 2015

Puppet centosrepos module

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with centosrepos

Overview

Puppet module to include the CentOS repository.

This module will tipically not be used in a CentOS system, but in any other RedHat-based system.

Module Description

That is a very simple module. It creates a standard /etc/yum.repos/CentOS-base.repo file, with each section enabled/disabled according to the parameters passed to the class. By default all the CentOS repos will be disabled.

Setup

What centosrepos affects

  • It creates the /etc/yum.repos/CentOS-base.repo file.

Beginning with centosrepos

To create the CentOS repositories but will all repositories disabled do:

class {'centosrepos':}

To enable only the base repo:

class {'centosrepos':
    enable_base => true
}

To enable base and extras:

class {'centosrepos':
    enable_base   => true,
    enable_extras => true,
}

The list of available CentOS repositories is:

  • base
  • updates
  • extras
  • plus
  • contrib