diff --git a/yum/manifests/init.pp b/yum/manifests/init.pp index fd807bc..a37e2a4 100644 --- a/yum/manifests/init.pp +++ b/yum/manifests/init.pp @@ -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 {