From e876b83cad14c2b8b10e0b44045f28146973af5c Mon Sep 17 00:00:00 2001 From: Lance Bragstad Date: Mon, 7 Apr 2014 17:59:55 +0000 Subject: [PATCH] Use consistent hash type in Berksfile This change uses consistent hash types in the Berksfile. Before there were two different assignments: cookbook "statsd", :git => "git://github.com/att-cloud/cookbook-statsd.git" cookbook "openstack-common", git: "git://github.com/stackforge/cookbook-openstack-common.git" This fixes that issue so they are both consistent. Change-Id: Id20e2249b1f00a4abd90639243e4a1e600a64c47 --- Berksfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Berksfile b/Berksfile index 12214ef..365ea5c 100644 --- a/Berksfile +++ b/Berksfile @@ -1,6 +1,6 @@ metadata cookbook "statsd", - :git => "git://github.com/att-cloud/cookbook-statsd.git" + git: "git://github.com/att-cloud/cookbook-statsd.git" cookbook "openstack-common", - git: "git://github.com/stackforge/cookbook-openstack-common.git" \ No newline at end of file + git: "git://github.com/stackforge/cookbook-openstack-common.git"