From d770603f02ffa1a25da97bc3af94b2872df61372 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 --- manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index fbd093d..05bd654 100644 --- a/manifests/init.pp +++ b/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