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
|
2020-06-16 20:04:05 +00:00
|
|
|
raw: which python3
|
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
|
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
|
|
|
|
|
|
|
- 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
|
|
|
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
|
2020-10-21 06:22:19 +00:00
|
|
|
- not skip_http_proxy_on_os_packages
|
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
|
|
|
|
|
|
|
- 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
|
|
|
when:
|
|
|
|
- https_proxy is defined
|
2019-02-11 22:04:27 +00:00
|
|
|
- need_https_proxy.rc != 0
|
2020-10-21 06:22:19 +00:00
|
|
|
- not skip_http_proxy_on_os_packages
|
2018-12-25 18:46:53 +00:00
|
|
|
|
2020-06-16 20:04:05 +00:00
|
|
|
- name: Install python3
|
2017-10-03 07:30:45 +00:00
|
|
|
raw:
|
|
|
|
apt-get update && \
|
2020-06-16 20:04:05 +00:00
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y python3-minimal
|
2019-02-11 22:04:27 +00:00
|
|
|
become: true
|
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
|
|
|
|
2021-08-19 22:37:24 +00:00
|
|
|
- name: Update Apt cache
|
|
|
|
raw: apt-get update --allow-releaseinfo-change
|
|
|
|
become: true
|
|
|
|
when:
|
|
|
|
- '''ID=debian'' in os_release.stdout_lines'
|
2021-11-19 17:02:51 +00:00
|
|
|
- '''VERSION_ID="10"'' in os_release.stdout_lines or ''VERSION_ID="11"'' in os_release.stdout_lines'
|
2021-08-19 22:37:24 +00:00
|
|
|
register: bootstrap_update_apt_result
|
|
|
|
changed_when:
|
|
|
|
- '"changed its" in bootstrap_update_apt_result.stdout'
|
|
|
|
- '"value from" in bootstrap_update_apt_result.stdout'
|
|
|
|
ignore_errors: true
|
|
|
|
|
2020-09-08 22:37:52 +00:00
|
|
|
- name: Set the ansible_python_interpreter fact
|
|
|
|
set_fact:
|
|
|
|
ansible_python_interpreter: "/usr/bin/python3"
|
|
|
|
|
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
|
2020-06-16 20:04:05 +00:00
|
|
|
use: apt
|
2019-04-23 22:46:02 +00:00
|
|
|
become: true
|