Skip to content

Commit

Permalink
misc: Use 'state: present' instead of 'installed' for packages
Browse files Browse the repository at this point in the history
These are aliases, but 'installed' currently doesn't work with
dnf5 module.
  • Loading branch information
vojtechtrefny committed Sep 18, 2024
1 parent c489b2a commit 895341a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions misc/install-test-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

tasks:
- name: Install runtime and build dependencies (Fedora)
package: name={{item}} state=installed
package: name={{item}} state=present
with_items:
- gettext
- python3-setuptools
Expand All @@ -27,7 +27,7 @@
when: ansible_distribution == "Fedora"

- name: Install test dependencies (Fedora)
package: name={{item}} state=installed
package: name={{item}} state=present
with_items:
- python3-coverage
- python3-pocketlint
Expand Down

0 comments on commit 895341a

Please sign in to comment.