diff options
Diffstat (limited to 'manifests/pip.pp')
-rw-r--r-- | manifests/pip.pp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/manifests/pip.pp b/manifests/pip.pp index cbd2ed8..bf987a4 100644 --- a/manifests/pip.pp +++ b/manifests/pip.pp @@ -146,6 +146,7 @@ define python::pip ( # Latest version. exec { "pip_install_${name}": command => "${pip_env} wheel --help > /dev/null 2>&1 && { ${pip_env} wheel --version > /dev/null 2>&1 || wheel_support_flag='--no-use-wheel'; } ; ${pip_env} --log ${cwd}/pip.log install --upgrade \$wheel_support_flag ${proxy_flag} ${source}", + unless => "${pip_env} search ${source} | grep -i INSTALLED | grep -i latest", user => $owner, environment => $environment, path => ['/usr/local/bin','/usr/bin','/bin', '/usr/sbin'], |