From 725e8decb808a65a92356eecd4681879fb6bfcba Mon Sep 17 00:00:00 2001 From: Scott Merrill Date: Wed, 23 Sep 2015 21:30:13 -0400 Subject: [PATCH] use full path on commands --- manifests/install.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/install.pp b/manifests/install.pp index 4025a875..dd4dc61c 100644 --- a/manifests/install.pp +++ b/manifests/install.pp @@ -69,8 +69,8 @@ pip: { # Install pip without pip, see https://pip.pypa.io/en/stable/installing/. exec { 'bootstrap pip': - command => 'curl https://bootstrap.pypa.io/get-pip.py | python', - unless => 'which pip', + command => '/usr/bin/curl https://bootstrap.pypa.io/get-pip.py | python', + unless => '/usr/bin/which pip', require => Package['python'], } Exec['bootstrap pip'] -> Package <| provider == pip |>