2017-10-03 15:30:45 +08:00
|
|
|
---
|
2019-02-12 06:04:27 +08:00
|
|
|
- name: Check if bootstrap is needed
|
2017-10-03 15:30:45 +08:00
|
|
|
raw: which "{{ item }}"
|
|
|
|
register: need_bootstrap
|
|
|
|
failed_when: false
|
2017-11-06 21:51:07 +08:00
|
|
|
changed_when: false
|
2019-02-12 06:04:27 +08:00
|
|
|
# This command should always run, even in check mode
|
|
|
|
check_mode: false
|
2017-10-03 15:30:45 +08:00
|
|
|
with_items:
|
|
|
|
- python
|
|
|
|
- pip
|
|
|
|
- dbus-daemon
|
2018-10-20 22:13:54 +08:00
|
|
|
environment: {}
|
2017-10-03 15:30:45 +08:00
|
|
|
tags: facts
|
|
|
|
|
2018-12-26 02:46:53 +08:00
|
|
|
- name: Check http::proxy in /etc/apt/apt.conf
|
2019-02-12 06:04:27 +08:00
|
|
|
raw: grep -qsi 'Acquire::http::proxy' /etc/apt/apt.conf
|
2018-12-26 02:46:53 +08:00
|
|
|
register: need_http_proxy
|
|
|
|
failed_when: false
|
|
|
|
changed_when: false
|
2019-02-12 06:04:27 +08:00
|
|
|
# This command should always run, even in check mode
|
|
|
|
check_mode: false
|
2018-12-26 02:46:53 +08:00
|
|
|
environment: {}
|
2019-02-12 06:04:27 +08:00
|
|
|
when:
|
|
|
|
- http_proxy is defined
|
2018-12-26 02:46:53 +08:00
|
|
|
|
|
|
|
- name: Add http_proxy to /etc/apt/apt.conf if http_proxy is defined
|
2019-02-12 06:04:27 +08:00
|
|
|
raw: echo 'Acquire::http::proxy "{{ http_proxy }}";' >> /etc/apt/apt.conf
|
|
|
|
become: true
|
2018-12-26 02:46:53 +08:00
|
|
|
environment: {}
|
|
|
|
when:
|
2019-01-03 16:18:09 +08:00
|
|
|
- http_proxy is defined
|
2019-02-12 06:04:27 +08:00
|
|
|
- need_http_proxy.rc != 0
|
2018-12-26 02:46:53 +08:00
|
|
|
|
|
|
|
- name: Check https::proxy in /etc/apt/apt.conf
|
2019-02-12 06:04:27 +08:00
|
|
|
raw: grep -qsi 'Acquire::https::proxy' /etc/apt/apt.conf
|
2018-12-26 02:46:53 +08:00
|
|
|
register: need_https_proxy
|
|
|
|
failed_when: false
|
|
|
|
changed_when: false
|
2019-02-12 06:04:27 +08:00
|
|
|
# This command should always run, even in check mode
|
|
|
|
check_mode: false
|
2018-12-26 02:46:53 +08:00
|
|
|
environment: {}
|
2019-02-12 06:04:27 +08:00
|
|
|
when:
|
|
|
|
- https_proxy is defined
|
2018-12-26 02:46:53 +08:00
|
|
|
|
|
|
|
- name: Add https_proxy to /etc/apt/apt.conf if https_proxy is defined
|
2019-02-12 06:04:27 +08:00
|
|
|
raw: echo 'Acquire::https::proxy "{{ https_proxy }}";' >> /etc/apt/apt.conf
|
|
|
|
become: true
|
2018-12-26 02:46:53 +08:00
|
|
|
environment: {}
|
|
|
|
when:
|
|
|
|
- https_proxy is defined
|
2019-02-12 06:04:27 +08:00
|
|
|
- need_https_proxy.rc != 0
|
2018-12-26 02:46:53 +08:00
|
|
|
|
2019-02-12 06:04:27 +08:00
|
|
|
- name: Install python, pip, and dbus
|
2017-10-03 15:30:45 +08:00
|
|
|
raw:
|
|
|
|
apt-get update && \
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal python-pip dbus
|
2019-02-12 06:04:27 +08:00
|
|
|
become: true
|
2018-10-20 22:13:54 +08:00
|
|
|
environment: {}
|
2017-10-03 15:30:45 +08:00
|
|
|
when:
|
2017-11-03 15:11:36 +08:00
|
|
|
need_bootstrap.results | map(attribute='rc') | sort | last | bool
|
2017-10-03 15:30:45 +08:00
|
|
|
|
|
|
|
- set_fact:
|
|
|
|
ansible_python_interpreter: "/usr/bin/python"
|
|
|
|
tags: facts
|