RETIRED, Puppet module to configure yum
Go to file
Spencer Krum 35d52404ec Boilerplate beaker-rspec files
Change-Id: I01b1e283ad6f8a84899c7b15ee6578e391c89798
2015-07-28 02:06:27 -07:00
manifests Migrate to puppet-httpd module 2015-07-16 15:44:02 -04:00
spec Boilerplate beaker-rspec files 2015-07-28 02:06:27 -07:00
templates Initial commit. 2014-05-27 10:35:34 -04:00
.gitignore Add .gitignore file. 2014-05-27 10:36:34 -04:00
.gitreview Add .gitreview Rakefile files and update puppet coding style 2014-09-05 16:13:15 +08:00
LICENSE Add missing LICENSE file 2015-01-29 23:00:21 +00:00
Modulefile Rename openstackci to openstackinfra 2015-04-20 13:51:52 -07:00
README Initial commit. 2014-05-27 10:35:34 -04:00
Rakefile Add .gitreview Rakefile files and update puppet coding style 2014-09-05 16:13:15 +08:00

README

puppet-yum

A module to help manage lightweight Yum mirrors

Example:

  # A lightweight Fedora 20 x86_64 updates binary only mirror
  # Mirror URL paths are provided to follow the normal Fedora mirroring
  # conventions to allow for easy baseurl configuration
  yum::repo { 'f20-x86_64-updates-testing':
    description => 'Fedora 20 - x86_64 - Updates Testing',
    mirrorlist  => 'https://mirrors.fedoraproject.org/metalink?repo=updates-tes
    cron_hour   => 0,
    cron_minute => 15,
    url_path    => 'fedora/updates/testing/20/x86_64/',
  }