2017-10-03 07:30:45 +00:00
|
|
|
---
|
|
|
|
# raw: cat /etc/issue.net | grep '{{ bootstrap_versions }}'
|
|
|
|
|
|
|
|
- name: Bootstrap | Check if bootstrap is needed
|
|
|
|
raw: which "{{ item }}"
|
|
|
|
register: need_bootstrap
|
|
|
|
failed_when: false
|
2017-11-06 13:51:07 +00:00
|
|
|
changed_when: false
|
2017-10-03 07:30:45 +00:00
|
|
|
with_items:
|
|
|
|
- python
|
|
|
|
- pip
|
|
|
|
- dbus-daemon
|
2018-10-20 14:13:54 +00:00
|
|
|
environment: {}
|
2017-10-03 07:30:45 +00:00
|
|
|
tags: facts
|
|
|
|
|
2018-12-25 18:46:53 +00:00
|
|
|
- name: Check http::proxy in /etc/apt/apt.conf
|
2019-01-03 08:18:09 +00:00
|
|
|
raw: grep -qsi 'Acquire::http::Proxy' /etc/apt/apt.conf
|
2018-12-25 18:46:53 +00:00
|
|
|
register: need_http_proxy
|
|
|
|
failed_when: false
|
|
|
|
changed_when: false
|
|
|
|
environment: {}
|
|
|
|
tags: facts
|
|
|
|
|
|
|
|
- name: Add http_proxy to /etc/apt/apt.conf if http_proxy is defined
|
2019-01-03 08:18:09 +00:00
|
|
|
raw: echo 'Acquire::http::Proxy "{{http_proxy}}";' >> /etc/apt/apt.conf
|
2018-12-25 18:46:53 +00:00
|
|
|
environment: {}
|
|
|
|
when:
|
|
|
|
- need_http_proxy.rc != 0
|
2019-01-03 08:18:09 +00:00
|
|
|
- http_proxy is defined
|
2018-12-25 18:46:53 +00:00
|
|
|
|
|
|
|
- name: Check https::proxy in /etc/apt/apt.conf
|
2019-01-03 08:18:09 +00:00
|
|
|
raw: grep -qsi 'Acquire::https::Proxy' /etc/apt/apt.conf
|
2018-12-25 18:46:53 +00:00
|
|
|
register: need_https_proxy
|
|
|
|
failed_when: false
|
|
|
|
changed_when: false
|
|
|
|
environment: {}
|
|
|
|
tags: facts
|
|
|
|
|
|
|
|
- name: Add https_proxy to /etc/apt/apt.conf if https_proxy is defined
|
|
|
|
raw: echo 'Acquire::https::proxy "{{https_proxy}}";' >> /etc/apt/apt.conf
|
|
|
|
environment: {}
|
|
|
|
when:
|
2019-01-03 08:18:09 +00:00
|
|
|
- need_https_proxy.rc != 0
|
2018-12-25 18:46:53 +00:00
|
|
|
- https_proxy is defined
|
|
|
|
|
2017-10-03 07:30:45 +00:00
|
|
|
- name: Bootstrap | Install python 2.x, pip, and dbus
|
|
|
|
raw:
|
|
|
|
apt-get update && \
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal python-pip dbus
|
2018-10-20 14:13:54 +00:00
|
|
|
environment: {}
|
2017-10-03 07:30:45 +00:00
|
|
|
when:
|
2017-11-03 07:11:36 +00:00
|
|
|
need_bootstrap.results | map(attribute='rc') | sort | last | bool
|
2017-10-03 07:30:45 +00:00
|
|
|
|
|
|
|
- set_fact:
|
|
|
|
ansible_python_interpreter: "/usr/bin/python"
|
|
|
|
tags: facts
|