Added support for centos-cr repository.
This commit is contained in:
parent
8e8515543d
commit
f3057ba60f
1 changed files with 17 additions and 0 deletions
|
@ -125,6 +125,23 @@ class yum::repo::adobe {
|
|||
}
|
||||
|
||||
|
||||
# Add CentOS CR (continuous release) repository
|
||||
#
|
||||
class yum::repo::centos-cr {
|
||||
|
||||
tag("bootstrap")
|
||||
|
||||
if $operatingsystem != "CentOS" {
|
||||
fail("CentOS CR repository not supported in ${operatingsystem}")
|
||||
}
|
||||
|
||||
package { "centos-release-cr":
|
||||
ensure => installed,
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
# Add Fedora EPEL repository
|
||||
#
|
||||
class yum::repo::epel {
|
||||
|
|
Loading…
Add table
Reference in a new issue