Browse Source

Merge pull request #1025 from holser/bug/961

Install pip on Ubuntu
pull/1027/head
Antoine Legrand 7 years ago
committed by GitHub
parent
commit
f4f730bd8a
1 changed files with 5 additions and 4 deletions
  1. 9
      roles/bootstrap-os/tasks/bootstrap-ubuntu.yml

9
roles/bootstrap-os/tasks/bootstrap-ubuntu.yml

@ -10,11 +10,12 @@
- pip
tags: facts
- name: Bootstrap | Install python 2.x
raw: >
- name: Bootstrap | Install python 2.x and pip
raw:
apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal pip
when: need_bootstrap | failed
DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal python-pip
when:
"{{ need_bootstrap.results | map(attribute='rc') | sort | last | bool }}"
- set_fact:
ansible_python_interpreter: "/usr/bin/python"

Loading…
Cancel
Save