Browse Source

Pip is required for vault #3376 (#3378)

* Change execution order for pip

* Remove spaces
pull/3395/head
Tupin Laurent 6 years ago
committed by k8s-ci-robot
parent
commit
408faac3c9
1 changed files with 10 additions and 1 deletions
  1. 11
      roles/bootstrap-os/tasks/bootstrap-centos.yml

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

@ -16,5 +16,14 @@
- name: Install packages requirements for bootstrap
yum:
name: libselinux-python
name: "{{ packages }}"
state: present
vars:
packages:
- libselinux-python
- epel-release
- name: Install pip for bootstrap
yum:
name: python-pip
state: present
Loading…
Cancel
Save