Skip to content

Commit

Permalink
Merge pull request #48 from krim/fix-install-deps
Browse files Browse the repository at this point in the history
Fix install deps
  • Loading branch information
griggheo authored Apr 29, 2020
2 parents 8239020 + e986257 commit ecd0978
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
- name: install deps (Debian)
apt: >
pkg={{item}}
state=installed
state=present
with_items:
- unzip
when: ansible_os_family == "Debian"
Expand All @@ -20,7 +20,7 @@
- name: install deps (RedHat)
yum: >
pkg={{ item }}
state=installed
state=present
with_items:
- unzip
when: ansible_os_family == "RedHat"
Expand Down

0 comments on commit ecd0978

Please sign in to comment.