Skip to content

Commit

Permalink
Ansible 2 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Oct 20, 2016
1 parent 3a6a9d4 commit 41f1327
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tasks/configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
owner: "{{ item.value.owner | default('root') }}"
group: "{{ item.value.group | default('mysql') }}"
mode: "{{ item.value.mode | default('0640') }}"
with_dict: percona_client_ssl_map
with_dict: "{{ percona_client_ssl_map }}"
tags:
- percona-client-configure-copy-certificate-files

Expand All @@ -18,6 +18,6 @@
owner: "{{ item.owner }}"
group: "{{ item.group | default(item.owner) }}"
mode: "{{ item.mode | default('0600') }}"
with_items: percona_client_my_cnf_files
with_items: "{{ percona_client_my_cnf_files }}"
tags:
- percona-client-configure-user-my-cnf
4 changes: 2 additions & 2 deletions tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
apt:
name: "{{ item }}"
state: latest
with_items: percona_client_dependencies
with_items: "{{ percona_client_dependencies }}"
tags:
- percona-client-install-dependencies

- name: install | additional
apt:
name: "{{ item }}"
state: latest
with_items: percona_client_install
with_items: "{{ percona_client_install }}"
tags:
- percona-client-install-additional
2 changes: 1 addition & 1 deletion tasks/repository.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
repo: "{{ item.type }} {{ item.url }} {{ item.component }}"
state: present
update_cache: true
with_items: percona_client_repositories
with_items: "{{ percona_client_repositories }}"
tags:
- percona-client-repository-add

Expand Down

0 comments on commit 41f1327

Please sign in to comment.