summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Stankevich <stankevich@users.noreply.github.com>2014-01-16 05:56:30 -0800
committerSergey Stankevich <stankevich@users.noreply.github.com>2014-01-16 05:56:30 -0800
commit5edb67512977e76b7696c4a06b65fdeded7ae444 (patch)
tree9a72deb5c43ab7537947a6a32ab5121207009f13
parent87ba99754366560837fc2b4a2fca4b4e5b2b112d (diff)
parentdba29a61bda4ab44ec8c42a43583d0e51f3806d9 (diff)
Merge pull request #55 from saz/patch-2
remove duplicate pip_install exec for latest case
-rw-r--r--manifests/pip.pp8
1 files changed, 0 insertions, 8 deletions
diff --git a/manifests/pip.pp b/manifests/pip.pp
index fb73ae7..4aacb31 100644
--- a/manifests/pip.pp
+++ b/manifests/pip.pp
@@ -112,14 +112,6 @@ define python::pip (
}
}
- latest: {
- 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 -U ${install_args} \$wheel_support_flag ${proxy_flag} ${source}",
- user => $owner,
- environment => $environment,
- }
- }
-
default: {
exec { "pip_uninstall_${name}":
command => "echo y | ${pip_env} uninstall ${uninstall_args} ${proxy_flag} ${name}",