2016-09-05 08:45:27 +00:00
|
|
|
---
|
|
|
|
# raw: cat /etc/issue.net | grep '{{ bootstrap_versions }}'
|
|
|
|
|
2018-10-10 02:14:33 +00:00
|
|
|
- name: List ubuntu_packages
|
|
|
|
set_fact:
|
|
|
|
ubuntu_packages:
|
|
|
|
- python
|
|
|
|
- python-apt
|
|
|
|
- python-pip
|
|
|
|
- dbus
|
|
|
|
|
2016-09-05 08:45:27 +00:00
|
|
|
- name: Bootstrap | Check if bootstrap is needed
|
2018-10-10 02:14:33 +00:00
|
|
|
raw: dpkg -l | cut -d' ' -f3 |grep -e ^{{item}}$
|
2016-09-05 08:45:27 +00:00
|
|
|
register: need_bootstrap
|
2016-12-27 11:38:54 +00:00
|
|
|
failed_when: false
|
2017-11-06 13:51:07 +00:00
|
|
|
changed_when: false
|
2018-10-10 02:14:33 +00:00
|
|
|
with_items: "{{ubuntu_packages}}"
|
2018-10-20 14:13:54 +00:00
|
|
|
environment: {}
|
2017-10-05 07:43:04 +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 && \
|
2018-10-10 02:14:33 +00:00
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y {{ubuntu_packages | join(" ")}}
|
2018-10-20 14:13:54 +00:00
|
|
|
environment: {}
|
2017-02-13 14:30:30 +00:00
|
|
|
when:
|
2018-10-10 02:14:33 +00:00
|
|
|
- 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"
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- facts
|