6d23d20f2f
This is preparation for a later version of ansbile-lint, which finds missing names on blocks. This seems a reasonable rule, and the Ansible manual says [1] Names for blocks have been available since Ansible 2.3. We recommend using names in all tasks, within blocks or elsewhere, for better visibility into the tasks being executed when you run the playbook. This simply adds a name tag for blocks that are missing it. This should have no operational change, but allows us to update the linter in a follow-on change. [1] https://docs.ansible.com/ansible/latest/user_guide/playbooks_blocks.html Change-Id: I92ed4616775650aced352bc9088a07e919f1a25f
37 lines
890 B
YAML
37 lines
890 B
YAML
- name: Install Python 3 pip
|
|
package:
|
|
name:
|
|
- python3-pip
|
|
- python3-setuptools
|
|
- python3-wheel
|
|
state: present
|
|
become: yes
|
|
|
|
- name: Install pip
|
|
block:
|
|
- name: Check for EPEL repository
|
|
stat:
|
|
path: /etc/yum.repos.d/epel.repo
|
|
register: _epel_repo
|
|
|
|
- name: Fail with instructions when EPEL is not installed
|
|
fail:
|
|
msg: |
|
|
The role `ensure-pip` cannot continue on this nodeset.
|
|
Install epel-release or set this Zuul job variable:
|
|
|
|
ensure_pip_from_packages_with_python2: false
|
|
when: not _epel_repo.stat.exists
|
|
|
|
- name: Install Python 2 pip
|
|
yum:
|
|
name:
|
|
- python-pip
|
|
- python-setuptools
|
|
- python-virtualenv
|
|
- python-wheel
|
|
state: present
|
|
enablerepo: epel
|
|
become: yes
|
|
when: ensure_pip_from_packages_with_python2
|