Skip to content

Commit

Permalink
Upgrade the kernel-core package separately
Browse files Browse the repository at this point in the history
  • Loading branch information
jsf9k committed Aug 9, 2024
1 parent b49f2b8 commit 53accc4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@
become: true
become_method: ansible.builtin.sudo
tasks:
- name: Upgrade the kernel separately
ansible.builtin.dnf:
name: kernel-core
# ansible-lint generates a warning that "package installs
# should not use latest" here, but this is one place where we
# want to use it.
state: latest # noqa package-latest
update_cache: true
- name: Upgrade all packages
ansible.builtin.include_role:
name: upgrade

0 comments on commit 53accc4

Please sign in to comment.