Merge pull request #2600 from cinerama70/pip-force-reinstall

Add support for pip force-reinstall
This commit is contained in:
Brian Coca 2016-01-11 18:17:50 -05:00
commit 8e066cd124

View file

@ -85,7 +85,7 @@ options:
- The state of module
required: false
default: present
choices: [ "present", "absent", "latest" ]
choices: [ "present", "absent", "latest", "forcereinstall" ]
extra_args:
description:
- Extra arguments passed to pip.
@ -155,6 +155,9 @@ EXAMPLES = '''
# Install (Bottle) for Python 3.3 specifically,using the 'pip-3.3' executable.
- pip: name=bottle executable=pip-3.3
# Install (Bottle), forcing reinstallation if it's already installed
- pip: name=bottle state=forcereinstall
'''
def _get_cmd_options(module, cmd):
@ -236,6 +239,7 @@ def main():
present='install',
absent='uninstall -y',
latest='install -U',
forcereinstall='install -U --force-reinstall',
)
module = AnsibleModule(
@ -359,7 +363,7 @@ def main():
is_present = _is_present(name, version, out.split())
changed = (state == 'present' and not is_present) or (state == 'absent' and is_present)
changed = (state == 'present' and not is_present) or (state == 'absent' and is_present) or (state == 'forcereinstall' and is_present)
module.exit_json(changed=changed, cmd=freeze_cmd, stdout=out, stderr=err)
if requirements or has_vcs: