From b85efa9af8c95c42a53a345f511c5b3d5efdb4dd Mon Sep 17 00:00:00 2001 From: Richard Crowley Date: Tue, 1 Mar 2011 15:22:29 +0000 Subject: [PATCH] Corrected the pre-run stage test that installs pip. --- test.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.pp b/test.pp index 25a2720..8f32d9a 100644 --- a/test.pp +++ b/test.pp @@ -7,9 +7,9 @@ } exec { "easy_install pip": path => "/usr/local/bin:/usr/bin:/bin", - refreshonly => true, require => Package["python-setuptools"], subscribe => Package["python-setuptools"], + unless => "which pip", } } class { "pre": stage => "pre" }