k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
602 B
21 lines
602 B
---
|
|
- name: Import Debian bootstrap
|
|
import_tasks: debian.yml
|
|
|
|
- name: Check unattended-upgrades file exist
|
|
stat:
|
|
path: /etc/apt/apt.conf.d/50unattended-upgrades
|
|
register: unattended_upgrades_file_stat
|
|
when:
|
|
- ubuntu_kernel_unattended_upgrades_disabled
|
|
|
|
- name: Disable kernel unattended-upgrades
|
|
lineinfile:
|
|
path: "{{ unattended_upgrades_file_stat.stat.path }}"
|
|
insertafter: "Unattended-Upgrade::Package-Blacklist"
|
|
line: '"linux-";'
|
|
state: present
|
|
become: true
|
|
when:
|
|
- ubuntu_kernel_unattended_upgrades_disabled
|
|
- unattended_upgrades_file_stat.stat.exists
|