remove loop control

This commit is contained in:
Robert Kaussow 2018-10-22 23:20:09 +02:00
parent c9ab20020f
commit c3cc5881e7
1 changed files with 0 additions and 4 deletions

View File

@ -14,8 +14,6 @@
state: "{{ item.state | default('present') }}"
with_items: "{{ postgres_users }}"
no_log: True
loop_control:
label: "{{ item.name }}"
when: item.pam_user | default(False)
- name: Setup client authentication
@ -46,7 +44,5 @@
state: "{{ item.state | default('present') }}"
no_log: True
with_items: "{{ postgres_users }}"
loop_control:
label: "{{ item.name }}"
become: true
become_user: "{{ postgres_user }}"