From ac7cc7eb789c3fbf451ad1885193bd6432edc262 Mon Sep 17 00:00:00 2001 From: Walter Huf Date: Fri, 15 Nov 2013 16:12:11 -0600 Subject: [PATCH] Fixes a small error in the rpm dev repo codepath --- recipes/rpm.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/rpm.rb b/recipes/rpm.rb index 3362f0b..9899a36 100644 --- a/recipes/rpm.rb +++ b/recipes/rpm.rb @@ -21,7 +21,7 @@ repo = node['ceph'][platform_family][branch]['repository'] if branch == "dev" # Instead of using the yum cookbook, # we do it this way. It avoids a dependency - system "curl -s node['ceph'][#{platform_family}]['dev']['repository_key'] > /etc/pki/rpm-gpg/RPM-GPG-KEY-CEPH" + system "curl -s #{node['ceph'][platform_family]['dev']['repository_key']} > /etc/pki/rpm-gpg/RPM-GPG-KEY-CEPH" system "cat > /etc/yum.repos.d/ceph.repo << EOF\n" \ "[ceph]\n" \ "name=Ceph\n" \