RETIRED, Puppet module to configure yum
Go to file
Dan Prince f55873584c Update module name per CI conventions.
Update the module name to be openstackci-yum.
2014-05-27 10:54:58 -04:00
manifests Initial commit. 2014-05-27 10:35:34 -04:00
templates Initial commit. 2014-05-27 10:35:34 -04:00
.gitignore Add .gitignore file. 2014-05-27 10:36:34 -04:00
LICENSE Add LICENSE 2014-05-27 10:39:33 -04:00
Modulefile Update module name per CI conventions. 2014-05-27 10:54:58 -04:00
README Initial commit. 2014-05-27 10:35:34 -04: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/',
  }