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 f88964c commit d5323c7
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 @@ -14,15 +14,15 @@
- name: install | dependencies
apt:
name: "{{ item }}"
state: latest
state: "{{ apt_install_state | default('latest') }}"
with_items: "{{ percona_server_dependencies }}"
tags:
- percona-server-install-dependencies

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

0 comments on commit d5323c7

Please sign in to comment.