Try this.

This commit is contained in:
Kevin Fenzi 2014-03-28 14:41:00 +00:00
parent 51fb9f824c
commit b26adb82f8
2 changed files with 5 additions and 5 deletions

View file

@ -13,6 +13,6 @@
tasks:
- name: add root keys for sysadmin-main and other allowed users
action: authorized_key user=root key="{{ item }}"
with_pipe:
action: authorized_key user=root key={{ item }}
with_lines:
- "{{ auth_keys_from_fas}} @sysadmin-main {{ root_auth_users }}"

View file

@ -40,9 +40,9 @@
- config
- name: add root keys for sysadmin-main and other allowed users
action: authorized_key user=root key="{{ item }}"
with_pipe:
- "{{ auth_keys_from_fas}} @sysadmin-main {{ root_auth_users }}"
authorized_key: user=root key={{ item }}
with_lines:
- "{{ auth_keys_from_fas}} @sysadmin-main {{ root_auth_users }}"
tags:
- config
ignore_errors: true