Skip to content

Commit

Permalink
Merge pull request #457 from vojtechtrefny/main_ansible-state-present
Browse files Browse the repository at this point in the history
misc: Use 'state: present' instead of 'installed' for packages
  • Loading branch information
vojtechtrefny authored Sep 19, 2024
2 parents c489b2a + 895341a commit 6347808
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 6347808

Please sign in to comment.