Merge "Remove python2 or python3 problem pip packages"

This commit is contained in:
Zuul 2020-03-19 10:58:27 +00:00 committed by Gerrit Code Review
commit 70fe5f2ca9
1 changed files with 18 additions and 0 deletions

View File

@ -26,8 +26,21 @@
name: "{{ gate_packages_remove }}"
state: absent
- name: Check if pip2 is installed
command: 'which pip2'
register: pip2_installed
changed_when: false
failed_when: pip2_installed.rc > 1
- name: Check if pip3 is installed
command: 'which pip3'
register: pip3_installed
changed_when: false
failed_when: pip3_installed.rc > 1
- name: Remove known problem pip packages
pip:
executable: "{{ item }}"
name:
- virtualenv
- tox
@ -41,6 +54,11 @@
- six
- zipp
state: absent
register: pip_remove
when: (pip2_installed.rc == 0) or (pip3_installed.rc == 0)
with_items:
- "{{ (pip2_installed.rc == 0) | ternary('pip2', []) }}"
- "{{ (pip3_installed.rc == 0) | ternary('pip3', []) }}"
- name: Remove package blacklist for yum/dnf
lineinfile: