- name: Write users
lineinfile:
dest: "/tmp/users.txt"
line: "HOST: {{ansible_nodename}}\n{{item}}\n\n"
insertafter: EOF
create: yes
state: present
delegate_to: localhost
with_items:
- "{{sudoers.stdout_lines|to_nice_json}}"
- "{{other_users.stdout_lines|to_nice_json}}"
notify:
- email
- cleanup