From 2611cc05b4049db9020bb0081f4da811f266f172 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 18 Apr 2014 18:45:34 -0700 Subject: [PATCH] Don't keep fetching the same graphite-web revision The vcsrepo module doesn't really like the combo of latest and a specific sha. It keeps grabbing it over and over again. Guess what? The sha hasn't updated since the last time you looked for the same sha. Change-Id: I1a017278b83af11541794bf03644b3346e9869c2 --- modules/graphite/manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/graphite/manifests/init.pp b/modules/graphite/manifests/init.pp index fbd093d4f4..05bd65437a 100644 --- a/modules/graphite/manifests/init.pp +++ b/modules/graphite/manifests/init.pp @@ -19,7 +19,7 @@ class graphite( } vcsrepo { '/opt/graphite-web': - ensure => latest, + ensure => present, provider => git, # revision => '0.9.x', # pin version because of https://github.com/graphite-project/graphite-web/issues/650