Install python-pip from local yum repository (#3940)
Add support install python-pip from local yum repository if local yum repository exist.
This commit is contained in:
parent
3ce033995f
commit
d4bd08f82e
1 changed files with 18 additions and 2 deletions
|
@ -29,20 +29,36 @@
|
|||
state: present
|
||||
when: http_proxy is defined
|
||||
|
||||
- name: Install packages requirements for bootstrap
|
||||
- name: Install libselinux-python and yum-utils for bootstrap
|
||||
yum:
|
||||
name: "{{ packages }}"
|
||||
state: present
|
||||
vars:
|
||||
packages:
|
||||
- libselinux-python
|
||||
- epel-release
|
||||
- yum-utils
|
||||
when:
|
||||
- not is_atomic
|
||||
|
||||
- name: Check python-pip package
|
||||
yum:
|
||||
list=python-pip
|
||||
register: package_python_pip
|
||||
when:
|
||||
- not is_atomic
|
||||
|
||||
- name: Install epel-release for bootstrap
|
||||
yum:
|
||||
name: epel-release
|
||||
state: present
|
||||
when:
|
||||
- not is_atomic
|
||||
- package_python_pip.results | length != 0
|
||||
|
||||
- name: Install pip for bootstrap
|
||||
yum:
|
||||
name: python-pip
|
||||
state: present
|
||||
when:
|
||||
- not is_atomic
|
||||
- package_python_pip.results | length != 0
|
||||
|
|
Loading…
Reference in a new issue