2013-06-06 16:48:15 +02:00
|
|
|
# Class: epel
|
|
|
|
#
|
|
|
|
# Configure EPEL repository.
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
#
|
|
|
|
# Actions:
|
|
|
|
#
|
|
|
|
# Requires:
|
|
|
|
#
|
|
|
|
# Sample Usage:
|
|
|
|
#
|
|
|
|
# include epel
|
|
|
|
#
|
|
|
|
class epel {
|
|
|
|
|
|
|
|
yumrepo { 'epel':
|
2015-07-20 16:45:21 +02:00
|
|
|
mirrorlist => "http://mirrors.fedoraproject.org/mirrorlist?repo=epel-${::operatingsystemmajrelease}&arch=${::architecture}",
|
2014-09-11 10:47:01 +02:00
|
|
|
enabled => '1',
|
2013-06-06 16:48:15 +02:00
|
|
|
gpgcheck => '0',
|
2015-07-20 16:45:21 +02:00
|
|
|
descr => "Extra Packages for Enterprise Linux ${::operatingsystemmajrelease} - ${::architecture}"
|
2013-06-06 16:48:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|