yum

contributions requested
Yet another yum module to manage yum repositories stanzas.

11,641 downloads

10,875 latest version

2.1 quality score

Support the Puppet Community by contributing to this module

You are welcome to contribute to this module by suggesting new features, currency updates, or fixes. Every contribution is valuable to help ensure that the module remains compatible with the latest Puppet versions and continues to meet community needs. Complete the following steps:

  1. Review the module’s contribution guidelines and any licenses. Ensure that your planned contribution aligns with the author’s standards and any legal requirements.
  2. Fork the repository on GitHub, make changes on a branch of your fork, and submit a pull request. The pull request must clearly document your proposed change.

For questions about updating the module, contact the module’s author.

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.