Skip to content

Commit

Permalink
use ansible.builtin.dnf (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
swapdisk authored May 23, 2024
1 parent 251c54a commit d3970b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion roles/remediate/tasks/leapp_missing_efibootmgr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
- name: leapp_missing_efibootmgr | Install efibootmgr package - required on EFI systems
block:
- name: leapp_missing_efibootmgr | Install efibootmgr package
ansible.builtin.yum:
ansible.builtin.dnf:
name: efibootmgr
state: present

Expand Down
2 changes: 1 addition & 1 deletion roles/remediate/tasks/leapp_multiple_kernels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
when: installed_kernels.stdout_lines[0] != current_kernel.stdout

- name: leapp_multiple_kernels | Remove old kernels
ansible.builtin.yum:
ansible.builtin.dnf:
name: kernel-core-{{ item }}
state: absent
loop: "{{ installed_kernels.stdout_lines[1:] }}"
Expand Down
2 changes: 1 addition & 1 deletion roles/remediate/tasks/leapp_unavailable_kde.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
- name: leapp_unavailable_kde | Install the GNOME desktop environment to be able to upgrade
block:
- name: leapp_unavailable_kde | Install the GNOME desktop environment
ansible.builtin.yum:
ansible.builtin.dnf:
name: "@^graphical-server-environment"
state: present

Expand Down

0 comments on commit d3970b6

Please sign in to comment.