fuel-library/deployment/puppet/epel
Bogdan Dobrelya 4fc809bf79 Add openstack_extras and epel dependency
* Required for pacemaker service provider wrappers
  implementation.
* Add Puppet-openstack_extras module which comes to replace
  puppet-openstack in upstream.
  commit sha: b0b83dbf4507db36220f9c04c68e4788109b1c4b
  Source: https://github.com/stackforge/puppet-openstack_extras
* Add a dependency epel module
  v1.0.0 db0cdeba51739e748c965974ec832acada227084
  Source: https://github.com/stahnma/puppet-module-epel

Related blueprint pacemaker-improvements

Change-Id: Ib607cd77d56e55489e2a855c7ca933b8eb9fcaee
Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
2014-10-15 10:26:03 +02:00
..
files Add openstack_extras and epel dependency 2014-10-15 10:26:03 +02:00
manifests Add openstack_extras and epel dependency 2014-10-15 10:26:03 +02:00
spec Add openstack_extras and epel dependency 2014-10-15 10:26:03 +02:00
tests Add openstack_extras and epel dependency 2014-10-15 10:26:03 +02:00
.fixtures.yml Add openstack_extras and epel dependency 2014-10-15 10:26:03 +02:00
.gitignore Add openstack_extras and epel dependency 2014-10-15 10:26:03 +02:00
.nodeset.yml Add openstack_extras and epel dependency 2014-10-15 10:26:03 +02:00
.rspec Add openstack_extras and epel dependency 2014-10-15 10:26:03 +02:00
.travis.yml Add openstack_extras and epel dependency 2014-10-15 10:26:03 +02:00
Gemfile Add openstack_extras and epel dependency 2014-10-15 10:26:03 +02:00
LICENSE Add openstack_extras and epel dependency 2014-10-15 10:26:03 +02:00
README.md Add openstack_extras and epel dependency 2014-10-15 10:26:03 +02:00
Rakefile Add openstack_extras and epel dependency 2014-10-15 10:26:03 +02:00

README.md

Configure EPEL (Extra Repository for Enterprise Linux)

About

This module basically just mimics the epel-release rpm. The same repos are enabled/disabled and the GPG key is imported. In the end you will end up with the EPEL repos configured.

The following Repos will be setup and enabled by default:

  • epel

Other repositories that will setup but disabled (as per the epel-release setup)

  • epel-debuginfo
  • epel-source
  • epel-testing
  • epel-testing-debuginfo
  • epel-testing-source

Proxy

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

Why?

I am a big fan of EPEL. I actually was one of the people who helped get it going. I am also the owner of the epel-release package, so in general this module should stay fairly up to date with the official upstream package.

I just got sick of coding Puppet modules and basically having an assumption that EPEL was setup or installed. I can now depend on this module instead.

I realize it is fairly trivial to get EPEL setup. Every now-and-then however the path to epel-release changes because something changes in the package (mass rebuild, rpm build macros updates, etc). This module will bypass the changing URL and just setup the package mirrors.

This does mean that if you are looking for RPM macros that are normally included with EPEL release, this will not have them.

Futher Information

ChangeLog

  • Ready for 1.0 - replace Modulefile with metadata.json
  • Replace os_maj_version custom fact with operatingsystemmajrelease
  • Works for EPEL7 now as well.

Testing

  • This is commonly used on Puppet Enterprise 3.x
  • This was tested using Puppet 3.3.0 on Centos5/6
  • This was tested using Puppet 3.1.1 on Amazon's AWS Linux
  • I assume it will work on any RHEL variant (Amazon Linux is debatable as a variant)
  • Amazon Linux compatability not promised, as EPEL doesn't always work with it.

Lifecycle

  • No functionality has been introduced that should break Puppet 2.6 or 2.7, but I am no longer testing these versions of Puppet as they are end-of-lifed from Puppet Labs.
  • This also assumes a facter of greater than 1.7.0 -- at least from a testing perspective.

Unit tests

Install the necessary gems

bundle install

Run the RSpec and puppet-lint tests

bundle exec rake ci

System tests

If you have Vagrant >=1.1.0 you can also run system tests:

RSPEC_SET=centos-64-x64 bundle exec rake spec:system

Available RSPEC_SET options are in .nodeset.yml

License

Apache Software License 2.0

Author/Contributors