2017-10-03 07:30:45 +00:00
|
|
|
---
|
2019-04-23 22:46:02 +00:00
|
|
|
# Some Debian based distros ship without Python installed
|
|
|
|
|
2019-02-11 22:04:27 +00:00
|
|
|
- name: Check if bootstrap is needed
|
2019-04-23 22:46:02 +00:00
|
|
|
raw: which python
|
2017-10-03 07:30:45 +00:00
|
|
|
register: need_bootstrap
|
|
|
|
failed_when: false
|
2017-11-06 13:51:07 +00:00
|
|
|
changed_when: false
|
2019-02-11 22:04:27 +00:00
|
|
|
# This command should always run, even in check mode
|
|
|
|
check_mode: false
|
2018-10-20 14:13:54 +00:00
|
|
|
environment: {}
|
2019-04-23 22:46:02 +00:00
|
|
|
tags:
|
|
|
|
- facts
|
2017-10-03 07:30:45 +00:00
|
|
|
|
2019-07-16 08:41:24 +00:00
|
|
|
- name: Check http::proxy in apt configuration files
|
|
|
|
raw: apt-config dump | grep -qsi 'Acquire::http::proxy'
|
2018-12-25 18:46:53 +00:00
|
|
|
register: need_http_proxy
|
|
|
|
failed_when: false
|
|
|
|
changed_when: false
|
2019-02-11 22:04:27 +00:00
|
|
|
# This command should always run, even in check mode
|
|
|
|
check_mode: false
|
2018-12-25 18:46:53 +00:00
|
|
|
environment: {}
|
2019-02-11 22:04:27 +00:00
|
|
|
when:
|
|
|
|
- http_proxy is defined
|
2018-12-25 18:46:53 +00:00
|
|
|
|
|
|
|
- name: Add http_proxy to /etc/apt/apt.conf if http_proxy is defined
|
2019-02-11 22:04:27 +00:00
|
|
|
raw: echo 'Acquire::http::proxy "{{ http_proxy }}";' >> /etc/apt/apt.conf
|
|
|
|
become: true
|
2018-12-25 18:46:53 +00:00
|
|
|
environment: {}
|
|
|
|
when:
|
2019-01-03 08:18:09 +00:00
|
|
|
- http_proxy is defined
|
2019-02-11 22:04:27 +00:00
|
|
|
- need_http_proxy.rc != 0
|
2018-12-25 18:46:53 +00:00
|
|
|
|
2019-07-16 08:41:24 +00:00
|
|
|
- name: Check https::proxy in apt configuration files
|
|
|
|
raw: apt-config dump | grep -qsi 'Acquire::https::proxy'
|
2018-12-25 18:46:53 +00:00
|
|
|
register: need_https_proxy
|
|
|
|
failed_when: false
|
|
|
|
changed_when: false
|
2019-02-11 22:04:27 +00:00
|
|
|
# This command should always run, even in check mode
|
|
|
|
check_mode: false
|
2018-12-25 18:46:53 +00:00
|
|
|
environment: {}
|
2019-02-11 22:04:27 +00:00
|
|
|
when:
|
|
|
|
- https_proxy is defined
|
2018-12-25 18:46:53 +00:00
|
|
|
|
|
|
|
- name: Add https_proxy to /etc/apt/apt.conf if https_proxy is defined
|
2019-02-11 22:04:27 +00:00
|
|
|
raw: echo 'Acquire::https::proxy "{{ https_proxy }}";' >> /etc/apt/apt.conf
|
|
|
|
become: true
|
2018-12-25 18:46:53 +00:00
|
|
|
environment: {}
|
|
|
|
when:
|
|
|
|
- https_proxy is defined
|
2019-02-11 22:04:27 +00:00
|
|
|
- need_https_proxy.rc != 0
|
2018-12-25 18:46:53 +00:00
|
|
|
|
2019-04-23 22:46:02 +00:00
|
|
|
- name: Install python
|
2017-10-03 07:30:45 +00:00
|
|
|
raw:
|
|
|
|
apt-get update && \
|
2019-04-23 22:46:02 +00:00
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal
|
2019-02-11 22:04:27 +00:00
|
|
|
become: true
|
2018-10-20 14:13:54 +00:00
|
|
|
environment: {}
|
2017-10-03 07:30:45 +00:00
|
|
|
when:
|
2019-04-23 22:46:02 +00:00
|
|
|
- need_bootstrap.rc != 0
|
2017-10-03 07:30:45 +00:00
|
|
|
|
2019-04-23 22:46:02 +00:00
|
|
|
# Workaround for https://github.com/ansible/ansible/issues/25543
|
|
|
|
- name: Install dbus for the hostname module
|
|
|
|
package:
|
|
|
|
name: dbus
|
|
|
|
state: present
|
|
|
|
become: true
|