Skip to content

Commit eeba58a

Browse files
committed
Merge pull request mdxp#74 from RallySoftware-cookbooks/issue-71
Issue 71 - Removing dependency on yum and adding yum-epel
2 parents 4c68552 + ac712c3 commit eeba58a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

metadata.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
recipe "nodejs::install_from_package", "Installs Node.JS from packages"
1414
recipe "nodejs::npm", "Installs npm from source - a package manager for node"
1515

16-
%w{ apt yum build-essential }.each do |c|
16+
%w{ apt yum-epel build-essential }.each do |c|
1717
depends c
1818
end
1919

recipes/install_from_package.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
action :add
3939
end
4040
when 'rhel'
41-
include_recipe 'yum::epel'
41+
include_recipe 'yum-epel'
4242
packages = %w{ nodejs nodejs-devel npm }
4343
when 'smartos'
4444
packages = %w{ nodejs }

0 commit comments

Comments
 (0)