You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
413 B
YAML
19 lines
413 B
YAML
- name: "Ensure needed kernel packages for fix"
|
|
become: yes
|
|
apt:
|
|
pkg:
|
|
- linux-image-5.4.0-131-generic
|
|
- linux-modules-5.4.0-131-generic
|
|
tags:
|
|
- kernel-fix
|
|
- name: "Ensure kernel version in GRUB"
|
|
become: yes
|
|
lineinfile:
|
|
state: present
|
|
regex: "^GRUB_DEFAULT="
|
|
line: 'GRUB_DEFAULT="0"'
|
|
path: /etc/default/grub
|
|
notify: "Regenerate grub config"
|
|
tags:
|
|
- kernel-fix
|