aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/testbed-setup/ansible/roles/kernel/tasks/ubuntu_bionic.yaml
blob: 349c853c11118f1edc61aca27efeb13d61b0b2e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
# file: roles/kernel/tasks/ubuntu_bionic.yaml

- name: Get Available Kernel Versions
  command: "apt-cache showpkg linux-headers-*"
  changed_when: false
  register: apt_kernel_list
  tags:
    - kernel-inst

- name: Get installed packages with APT
  command: "dpkg -l"
  changed_when: false
  register: apt_packages_list
  tags:
    - kernel-inst

- name: Set target APT kernel version
  set_fact:
    _kernel: "{{ apt_kernel_list | deb_kernel(
                 kernel_version, ansible_kernel) }}"
  tags:
    - kernel-inst

- name: Ensure Packages Versions
  apt:
    name: "{{ apt_kernel_list | deb_kernel_pkg(
              kernel_version, ansible_kernel, ansible_distribution,
              ansible_architecture, item) }}"
  loop: "{{ kernel_packages }}"
  tags:
    - kernel-inst

- name: Ensure Any Other Kernel Packages Are Removed
  apt:
    name: "{{ apt_packages_list | deb_installed_kernel(
              apt_kernel_list, kernel_version, ansible_kernel) }}"
    state: absent
    purge: true
  notify:
    - "Reboot Server"
  tags:
    - kernel-inst

- name: Ensure Any Microcode Is Absent
  apt:
    name: "{{ absent_packages }}"
    state: absent
    purge: true
  tags:
    - kernel-inst