Removing unneeded with_items usage for clarity

Change-Id: Ia277f45197f8faaf3ebc159e3321519bd0469687
This commit is contained in:
Travis Truman 2016-03-09 11:01:00 -05:00
parent e4b7ae1787
commit 21f2409d6f

View File

@ -47,13 +47,10 @@
- name: Create the local directories
file:
path: "{{ item.path }}"
path: "/etc/rabbitmq/"
state: "directory"
group: "{{ item.owner|default('root') }}"
owner: "{{ item.group|default('root') }}"
mode: "{{ item.mode|default('0755') }}"
recurse: "{{ item.recurse|default('false') }}"
with_items:
- { path: "/etc/rabbitmq/" }
group: "root"
owner: "root"
mode: "0755"
tags:
- rabbitmq-config