Merge "playbooks: roles: {ironic,keystone}: Drop --force-reinstall"

This commit is contained in:
Jenkins 2017-02-24 02:45:27 +00:00 committed by Gerrit Code Review
commit 78a9bed56d
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@
state=latest
sourcedir={{ ironic_git_folder }}
source_install=true
extra_args="--no-cache-dir --upgrade --force-reinstall -c {{ reqs_git_folder }}/upper-constraints.txt"
extra_args="--no-cache-dir --upgrade -c {{ reqs_git_folder }}/upper-constraints.txt"
when: skip_install is not defined
- name: "Install ironic-inspector to permit use of inspection interface"
include: inspector_install.yml

View File

@ -22,6 +22,6 @@
# possibly merge these two tasks when
# https://github.com/ansible/ansible-modules-core/pull/2600 lands.
- name: "Install from {{ sourcedir }} using pip"
command: pip install --upgrade --force-reinstall {{ sourcedir }}
command: pip install --upgrade {{ sourcedir }}
when: source_install is defined and (source_install | bool == true)
environment: "{{ bifrost_venv_env if enable_venv else '{}' }}"