2017-10-03 15:30:45 +08:00
|
|
|
---
|
2019-04-24 06:46:02 +08:00
|
|
|
# Some Debian based distros ship without Python installed
|
|
|
|
|
2019-02-12 06:04:27 +08:00
|
|
|
- name: Check if bootstrap is needed
|
2020-06-17 04:04:05 +08:00
|
|
|
raw: which python3
|
2017-10-03 15:30:45 +08:00
|
|
|
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
|
2019-04-24 06:46:02 +08:00
|
|
|
tags:
|
|
|
|
- facts
|
2017-10-03 15:30:45 +08:00
|
|
|
|
2019-07-16 16:41:24 +08:00
|
|
|
- name: Check http::proxy in apt configuration files
|
|
|
|
raw: apt-config dump | grep -qsi 'Acquire::http::proxy'
|
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
|
|
|
|
|
|
|
- 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
|
|
|
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
|
2020-10-21 14:22:19 +08:00
|
|
|
- not skip_http_proxy_on_os_packages
|
2018-12-26 02:46:53 +08:00
|
|
|
|
2019-07-16 16:41:24 +08:00
|
|
|
- name: Check https::proxy in apt configuration files
|
|
|
|
raw: apt-config dump | grep -qsi 'Acquire::https::proxy'
|
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
|
|
|
|
|
|
|
- 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
|
|
|
when:
|
|
|
|
- https_proxy is defined
|
2019-02-12 06:04:27 +08:00
|
|
|
- need_https_proxy.rc != 0
|
2020-10-21 14:22:19 +08:00
|
|
|
- not skip_http_proxy_on_os_packages
|
2018-12-26 02:46:53 +08:00
|
|
|
|
2020-06-17 04:04:05 +08:00
|
|
|
- name: Install python3
|
2017-10-03 15:30:45 +08:00
|
|
|
raw:
|
|
|
|
apt-get update && \
|
2020-06-17 04:04:05 +08:00
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y python3-minimal
|
2019-02-12 06:04:27 +08:00
|
|
|
become: true
|
2017-10-03 15:30:45 +08:00
|
|
|
when:
|
2019-04-24 06:46:02 +08:00
|
|
|
- need_bootstrap.rc != 0
|
2017-10-03 15:30:45 +08:00
|
|
|
|
2021-08-20 06:37:24 +08:00
|
|
|
- name: Update Apt cache
|
|
|
|
raw: apt-get update --allow-releaseinfo-change
|
|
|
|
become: true
|
|
|
|
when:
|
2024-03-27 20:58:53 +08:00
|
|
|
- os_release_dict['ID'] == 'debian'
|
|
|
|
- os_release_dict['VERSION_ID'] in ["10", "11"]
|
2021-08-20 06:37:24 +08: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
|
2024-06-26 17:30:27 +08:00
|
|
|
|
|
|
|
- name: Disable kernel unattended-upgrades
|
|
|
|
lineinfile:
|
|
|
|
path: /etc/apt/apt.conf.d/50unattended-upgrades
|
|
|
|
insertafter: "Unattended-Upgrade::Package-Blacklist"
|
|
|
|
line: '"linux-";'
|
|
|
|
state: present
|
|
|
|
become: true
|
|
|
|
when:
|
|
|
|
- os_release_dict['ID'] == 'ubuntu'
|
|
|
|
- ubuntu_kernel_unattended_upgrades_disabled
|