From f11de1cbbb678d9a55fcf1a768c9bd0c97534c70 Mon Sep 17 00:00:00 2001 From: Timo Makinen Date: Mon, 10 Aug 2015 11:39:23 +0300 Subject: [PATCH] yum: Fix yum::plugin::downloadonly for CentOS 6.7. Plugin is now integrated to yum. --- yum/manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yum/manifests/init.pp b/yum/manifests/init.pp index bcfaa88..9b0d54f 100644 --- a/yum/manifests/init.pp +++ b/yum/manifests/init.pp @@ -77,7 +77,7 @@ class yum::plugin::downloadonly { "centos","redhat": { $package = $::operatingsystemrelease ? { /^[1-5]/ => "yum-downloadonly", - /^6/ => "yum-plugin-downloadonly", + /^6\.[0-6]$/ => "yum-plugin-downloadonly", default => undef, } }