Merge pull request #1025 from holser/bug/961

Install pip on Ubuntu
This commit is contained in:
Antoine Legrand 2017-02-14 10:31:42 +01:00 committed by GitHub
commit f4f730bd8a

View file

@ -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"