12 lines
738 B
Ruby
12 lines
738 B
Ruby
default['yum']['epel-next-source']['repositoryid'] = 'epel-next-source'
|
|
default['yum']['epel-next-source']['description'] =
|
|
"Extra Packages for #{node['platform_version'].to_i} $basearch - Next -Source"
|
|
default['yum']['epel-next-source']['mirrorlist'] =
|
|
"https://mirrors.fedoraproject.org/mirrorlist?repo=epel-next-source-#{node['platform_version'].to_i}&arch=$basearch"
|
|
default['yum']['epel-next-source']['gpgkey'] =
|
|
"https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-#{node['platform_version'].to_i}"
|
|
default['yum']['epel-next-source']['gpgcheck'] = true
|
|
default['yum']['epel-next-source']['enabled'] = false
|
|
default['yum']['epel-next-source']['managed'] = false
|
|
default['yum']['epel-next-source']['make_cache'] = true
|