Skip to content

Commit

Permalink
Consistency changes
Browse files Browse the repository at this point in the history
* Improved apt: state
  • Loading branch information
tersmitten committed Jan 9, 2017
1 parent 5a6c504 commit 23beb54
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 @@ -3,15 +3,15 @@
- name: install | dependencies
apt:
name: "{{ item }}"
state: latest
state: "{{ apt_install_state | default('latest') }}"
with_items: "{{ percona_client_dependencies }}"
tags:
- percona-client-install-dependencies

- name: install | additional
apt:
name: "{{ item }}"
state: latest
state: "{{ apt_install_state | default('latest') }}"
with_items: "{{ percona_client_install }}"
tags:
- percona-client-install-additional

0 comments on commit 23beb54

Please sign in to comment.