2016-09-05 08:45:27 +00:00
|
|
|
---
|
|
|
|
# raw: cat /etc/issue.net | grep '{{ bootstrap_versions }}'
|
|
|
|
|
|
|
|
- name: Bootstrap | Check if bootstrap is needed
|
2017-02-13 14:30:30 +00:00
|
|
|
raw: which "{{ item }}"
|
2016-09-05 08:45:27 +00:00
|
|
|
register: need_bootstrap
|
2016-12-27 11:38:54 +00:00
|
|
|
failed_when: false
|
2017-02-13 14:30:30 +00:00
|
|
|
with_items:
|
|
|
|
- python
|
|
|
|
- pip
|
2016-12-08 13:36:00 +00:00
|
|
|
tags: facts
|
2016-09-05 08:45:27 +00:00
|
|
|
|
2017-02-13 14:30:30 +00:00
|
|
|
- name: Bootstrap | Install python 2.x and pip
|
|
|
|
raw:
|
2017-02-13 14:30:30 +00:00
|
|
|
apt-get update && \
|
2017-02-13 14:30:30 +00:00
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal python-pip
|
|
|
|
when:
|
|
|
|
"{{ need_bootstrap.results | map(attribute='rc') | sort | last | bool }}"
|
2016-09-05 08:45:27 +00:00
|
|
|
|
|
|
|
- set_fact:
|
2016-09-05 09:51:22 +00:00
|
|
|
ansible_python_interpreter: "/usr/bin/python"
|
2016-12-08 13:36:00 +00:00
|
|
|
tags: facts
|