Removing unneeded with_items usage for clarity

Change-Id: I9ae035d159919f275141f2de1daa2111cd66e540
This commit is contained in:
Travis Truman 2016-03-02 19:36:05 -05:00
parent 58a35de92a
commit 2ddb24ebc3
1 changed files with 4 additions and 9 deletions

View File

@ -15,18 +15,13 @@
- name: Drop local .my.cnf file
config_template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
src: "client.my.cnf.j2"
dest: "/root/.my.cnf"
owner: "root"
group: "root"
mode: "0600"
config_overrides: "{{ item.config_overrides }}"
config_type: "{{ item.config_type }}"
with_items:
- src: "client.my.cnf.j2"
dest: "/root/.my.cnf"
config_overrides: "{{ galera_client_my_cnf_overrides }}"
config_type: "ini"
config_overrides: "{{ galera_client_my_cnf_overrides }}"
config_type: "ini"
when: galera_client_drop_config_file
tags:
- galera-client-user-config