Forge Home

yum

Yet another yum module to manage yum repositories stanzas.

11,421 downloads

10,741 latest version

2.1 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.4 (latest)
  • 0.0.3
  • 0.0.2
  • 0.0.1
released Feb 25th 2015

Start using this module

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

Add this module to your Puppetfile:

mod 'xdrum-yum', '0.0.4'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add xdrum-yum
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install xdrum-yum --version 0.0.4

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: repo, rhel, yum, centos

Documentation

xdrum/yum — version 0.0.4 Feb 25th 2015

This module manages yum repositories stanzas.

That's it: Yet another yum module to manage yum repositories stanzas.

Class: yum

Used to manage yum configuration (currently only a stub).

Parameters:

purge:
Discard all the unmanaged stanzas, default: present.

Sample Usage:

class { 'yum':
  purge => true,
}

Resource: yum::repo

A resource for managing yum repositories stanzas

Parameters:

baseurl:
The URL for the for this repository, default: absent.

description:
Repository description.

enabled:
Whether this repository is enabled., default: true.

ensure:
Specify if this stanza should be present or not, default: present

exclude:
Matching packages will never be considered in updates or installs for this repo, default: absent.

gpgcheck:
Whether to check the GPG signature on packages, default: false.

gpgkey:
The URL for the GPG key, default: undef.

includepkgs:
Only packages matching one of the shell globs will be considered for update or install, default: absent.

mirrorlist:
The URL for the GPG key for this repository, default: absent.

priority:
Priority of this repository from 1-99, default: absent.

proxy:
URL of a proxy server that Yum should use, default: absent.

proxy_username:
Username for this proxy.

proxy_password:
Password for this proxy.

Sample Usage:

 yum::repo { "centos-base":
   description => 'CentOS Base',
   mirrorlist  => 'http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra',
   gpgcheck    => true,
   gpgkey      => "http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6",
 }

Copyright:

Copyright 2015 Alessio Cassibba (X-Drum), unless otherwise noted.