Skip to content

Commit

Permalink
Merge pull request #82 from mpppk/replace_installed_to_present
Browse files Browse the repository at this point in the history
Replace state: installed to present
  • Loading branch information
fubarhouse authored Apr 4, 2018
2 parents f95fda5 + 7bcec23 commit 128b89f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tasks/tasks-CentOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- name: "Go-Lang | Install dependencies"
yum:
name: "{{ item }}"
state: installed
state: present
with_items:
- curl
- gcc
Expand Down
2 changes: 1 addition & 1 deletion tasks/tasks-Debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- name: "Go-Lang | Install dependencies"
apt:
name: "{{ item }}"
state: installed
state: present
with_items:
- curl
- gcc
Expand Down
2 changes: 1 addition & 1 deletion tasks/tasks-RedHat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- name: "Go-Lang | Install dependencies"
dnf:
name: "{{ item }}"
state: installed
state: present
with_items:
- curl
- gcc
Expand Down

0 comments on commit 128b89f

Please sign in to comment.