25 lines
394 B
Puppet
25 lines
394 B
Puppet
|
# Class: epel
|
||
|
#
|
||
|
# Configure EPEL repository.
|
||
|
#
|
||
|
# Parameters:
|
||
|
#
|
||
|
# Actions:
|
||
|
#
|
||
|
# Requires:
|
||
|
#
|
||
|
# Sample Usage:
|
||
|
#
|
||
|
# include epel
|
||
|
#
|
||
|
class epel {
|
||
|
|
||
|
yumrepo { 'epel':
|
||
|
mirrorlist => "http://mirrors.fedoraproject.org/mirrorlist?repo=epel-6&arch=${::architecture}",
|
||
|
enabled => '1',
|
||
|
gpgcheck => '0',
|
||
|
descr => "Extra Packages for Enterprise Linux 6 - ${::architecture}"
|
||
|
}
|
||
|
}
|
||
|
|