2016-09-05 08:45:27 +00:00
|
|
|
---
|
|
|
|
# raw: cat /etc/issue.net | grep '{{ bootstrap_versions }}'
|
|
|
|
|
|
|
|
- name: Bootstrap | Check if bootstrap is needed
|
|
|
|
raw: which python
|
|
|
|
register: need_bootstrap
|
|
|
|
ignore_errors: True
|
2016-12-08 13:36:00 +00:00
|
|
|
tags: facts
|
2016-09-05 08:45:27 +00:00
|
|
|
|
|
|
|
- name: Bootstrap | Install python 2.x
|
2016-11-16 11:11:54 +00:00
|
|
|
raw: apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal
|
2016-09-05 08:45:27 +00:00
|
|
|
when: need_bootstrap | failed
|
|
|
|
|
|
|
|
- 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
|