From 021779cc9f9b8a76eba82e79ef54ea52bf1cf4fd Mon Sep 17 00:00:00 2001 From: Jesse Nelson Date: Mon, 27 Jan 2014 14:35:35 -0800 Subject: [PATCH] update to yum3 yum-epel cook --- metadata.rb | 2 +- recipes/package.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata.rb b/metadata.rb index 23d57f3..f10ec36 100644 --- a/metadata.rb +++ b/metadata.rb @@ -6,7 +6,7 @@ version "1.4.5" depends "build-essential" -depends "yum" +depends "yum-epel" recipe "python", "Installs python, pip, and virtualenv" recipe "python::package", "Installs python using packages." diff --git a/recipes/package.rb b/recipes/package.rb index aed5214..115b53b 100644 --- a/recipes/package.rb +++ b/recipes/package.rb @@ -23,7 +23,7 @@ # COOK-1016 Handle RHEL/CentOS namings of python packages, by installing EPEL # repo & package if platform_family?('rhel') && major_version < 6 - include_recipe 'yum::epel' + include_recipe 'yum-epel' python_pkgs = ["python26", "python26-devel"] node.default['python']['binary'] = "/usr/bin/python26" else