Forge Home

perconarepo

A module to install the Percona package repos

7,336 downloads

6,731 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.1 (latest)
  • 1.0.0
released Apr 14th 2016
This version is compatible with:
  • Puppet Enterprise >= 4.0.0
  • Puppet >= 4.0.0

Start using this module

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

Add this module to your Puppetfile:

mod 'sysadmiral-perconarepo', '1.0.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add sysadmiral-perconarepo
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install sysadmiral-perconarepo --version 1.0.1

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

sysadmiral/perconarepo — version 1.0.1 Apr 14th 2016

perconarepo

Table of Contents

  1. Description
  2. Setup - The basics of getting started with perconarepo
  3. Usage - Configuration options and additional functionality
  4. Reference - An under-the-hood peek at what the module is doing and how
  5. Limitations - OS compatibility, etc.
  6. Development - Guide for contributing to the module

Description

Use this module to install the percona yum repo on supported Redhat based machines.

This will import the percona GPG key and then install the percona yum repos. The following repositories are added and enabled by default:

  • percona-release-basearch
  • percona-release-noarch
  • percona-release-source

The following repositories are added but disabled by default:

  • percona-testing-basearch
  • percona-testing-noarch
  • percona-testing-source
  • percona-experimental-basearch
  • percona-experimental-noarch
  • percona-experimental-source

Setup

Beginning with perconarepo

The simplest way to use this module is to: include perconarepo

Usage

I find it helpful to use the stages included in stdlib like below:

class { 'perconarepo: stage => setup }

This makes sure your repos are setup before anything tries to use them.

Puppetfile users

Add the following to your Puppetfile:

mod 'sysadmiral/perconarepo', '1.0.1'

Proxy

If you have an http proxy required to access the internet, you can use either a class parameter in the perconarepo class, or edit the $proxy variable in the params.pp file. By default no proxy is assumed.

Limitations

I have only tested this on CentOS 7 and Debian Jessie (to make sure it didn't get applied).

In theory it should work with any Redhat/RPM/Yum based OS.

Development

This module is free for anyone to use and if you spot any improvements please feel free to submit a Pull Request.

Release Notes/Contributors/Etc.

This is the first module I wrote so I kept it fairly simple.

I took heavy inspiration for this module from https://github.com/stahnma/puppet-module-epel because I found that to be extremely useful.