Version information
released Oct 17th 2018
This version is compatible with:
- Puppet Enterprise 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >=3.0.0 < 6.0.0
- , ,
Start using this module
Add this module to your Puppetfile:
mod 'hfm-remi', '1.11.0'
Learn more about managing modules with a PuppetfileDocumentation
hfm/remi — version 1.11.0 Oct 17th 2018
puppet-remi
Table of Contents
- Description
- Setup - The basics of getting started with remi
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Description
This module configure Remi's RPM repository and import RPM-GPG-KEY-remi.
Setup
Beginning with remi
To configure the remi with default parameters, declare the remi
class.
include remi
Usage
Configuring remi
class { 'remi':
remi_safe_enabled => 1,
remi_php71_enabled => 1,
}
Configuring modules from Hiera
---
remi::remi_safe_enabled: 1
remi::remi_php71_enabled: 1
Reference
Classes
Public Classes
remi
: Configure the remi repository and import the GPG keys.
Private Classes
remi::rpm_gpg_key
: Import the RPM GPG key for the Remi.
Parameters
remi
ensure
: Whether the RPM-GPG-KEY-remi file should exist. Default to present.path
: The path to the RPM-GPG-KEY-remi file to manage. Must be an absolute path. Default to '/etc/pki/rpm-gpg/RPM-GPG-KEY-remi'.
Development
Running tests
The STNS puppet module contains tests for both rspec-puppet (unit tests) and beaker-rspec (acceptance tests) to verify functionality. For detailed information on using these tools, please see their respective documentation.
Testing quickstart
- Unit tests:
$ bundle install
$ bundle exec rake lint
$ bundle exec rake validate
$ bundle exec rake spec
- Acceptance tests:
# Set your DOCKER_HOST variable
$ eval "$(docker-machine env default)"
# Run beaker acceptance tests
$ BEAKER_set=centos7 bundle exec rake beaker
Changelog
v1.11.0 (2018-10-18)
v1.10.0 (2018-10-18)
v1.9.0 (2018-10-02)
v1.8.0 (2018-06-08)
Release 1.7.0 (2018-01-24)
Release 1.6.0 (2017-11-30)
Release 1.5.0 (2017/03/26)
- Support remi-php53 repository #7
Release 1.4.0 (2016/12/29)
- Change: Use resource default and gpgcheck is true by default #6
Release 1.3.2 (2016/12/29)
- Fix: remi-safe and remi-php7* repos dont support centos 5 #5
Release 1.3.1 (2016/12/02)
- Support PHP7.1 in remi repo #4
Release 1.2.0 (2016/07/27)
- Wrap epel declaration in if statement #3
Release 1.1.6 (2016/05/03)
- Fix: Fixed error importing rpm key #2
Release 1.0.1 - 1.1.4 (2016/03/24)
- Some fixes.
Release 1.0.0 (2016/03/24)
- Initial release.
Dependencies
- puppetlabs/stdlib (>= 3.0.0 < 6.0.0)
- stahnma/epel (>= 1.0.0 < 2.0.0)