Merge "Prevent upgrading to pip 21+"

This commit is contained in:
Zuul 2021-01-26 07:47:45 +00:00 committed by Gerrit Code Review
commit eb5b9200cb
1 changed files with 4 additions and 2 deletions

View File

@ -17,9 +17,11 @@
roles:
- ensure-pip
tasks:
- name: upgrade pip
- name: upgrade pip, but not too far
pip:
name: pip
# 20.* works on both py2 and py3, and the pip for centos7 in EPEL
# isn't smart enough to prevent us upgrading to 21+
name: pip<21
extra_args: --upgrade
- name: install rsync-daemon - CentOS 8