diff options
author | Sergey Stankevich <stankevich@users.noreply.github.com> | 2014-07-27 11:48:52 -0400 |
---|---|---|
committer | Sergey Stankevich <stankevich@users.noreply.github.com> | 2014-07-27 11:48:52 -0400 |
commit | f9a04de1d66be8a05c479d18796b8272b3313653 (patch) | |
tree | 250d3610d13b5d2e556a00dc1448c5932fac6f20 /manifests | |
parent | 1eae2fb2781895a7db58cf23cc448e7d5212cbe6 (diff) | |
parent | 676be6403c428fa9e7c0bb7195484669b08333e9 (diff) |
Merge pull request #98 from daniellawrence/remove_use_pkgname_not_used
puppet-lint: removed unused var 'use_pkgname'
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/pip.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/pip.pp b/manifests/pip.pp index 247295c..dd2be0d 100644 --- a/manifests/pip.pp +++ b/manifests/pip.pp @@ -185,7 +185,7 @@ define python::pip ( default: { # Anti-action, uninstall. exec { "pip_uninstall_${name}": - command => "echo y | ${pip_env} uninstall ${uninstall_args} ${proxy_flag} ${use_pkgname}", + command => "echo y | ${pip_env} uninstall ${uninstall_args} ${proxy_flag}", onlyif => "${pip_env} freeze | grep -i -e ${grep_regex}", user => $owner, environment => $environment, |