2016-09-05 16:45:27 +08: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 21:36:00 +08:00
|
|
|
tags: facts
|
2016-09-05 16:45:27 +08:00
|
|
|
|
|
|
|
- name: Bootstrap | Install python 2.x
|
2016-11-16 19:11:54 +08:00
|
|
|
raw: apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal
|
2016-09-05 16:45:27 +08:00
|
|
|
when: need_bootstrap | failed
|
|
|
|
|
|
|
|
- set_fact:
|
2016-09-05 17:51:22 +08:00
|
|
|
ansible_python_interpreter: "/usr/bin/python"
|
2016-12-08 21:36:00 +08:00
|
|
|
tags: facts
|