Browse Source

Install python-pip from local yum repository (#3940)

Add support install python-pip from local yum repository if local yum repository exist.
pull/3948/head
Anton Patsev 5 years ago
committed by Kubernetes Prow Robot
parent
commit
d4bd08f82e
1 changed files with 18 additions and 2 deletions
  1. 20
      roles/bootstrap-os/tasks/bootstrap-centos.yml

20
roles/bootstrap-os/tasks/bootstrap-centos.yml

@ -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…
Cancel
Save