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.
hetzner-ansible/roles/common/tasks/DEV_701_kernel_fix.yaml

19 lines
476 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="Advanced options for Ubuntu>Ubuntu, with Linux 5.4.0-131-generic"'
path: /etc/default/grub
notify: "Regenerate grub config"
tags:
- kernel-fix