diff options
| author | Seth Vidal <skvidal@fedoraproject.org> | 2013-06-17 13:54:17 +0000 |
|---|---|---|
| committer | Seth Vidal <skvidal@fedoraproject.org> | 2013-06-17 13:54:53 +0000 |
| commit | 79e83d9d962bc17b01e0437da30beb4182d491bb (patch) | |
| tree | e9dbe64b065190b4908b1bd4814a007711a7a092 /tasks/cloud_setup_basic.yml | |
| parent | 94802c6a2712fe8d69ffa61637d964f671dffe1c (diff) | |
| download | ansible-79e83d9d962bc17b01e0437da30beb4182d491bb.tar.gz ansible-79e83d9d962bc17b01e0437da30beb4182d491bb.tar.xz ansible-79e83d9d962bc17b01e0437da30beb4182d491bb.zip | |
ansible 1.2 breaks $FILE and $PIPE - so I went and fixed it everywhere :(
Diffstat (limited to 'tasks/cloud_setup_basic.yml')
| -rw-r--r-- | tasks/cloud_setup_basic.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tasks/cloud_setup_basic.yml b/tasks/cloud_setup_basic.yml index 78cc22076..e7543cf31 100644 --- a/tasks/cloud_setup_basic.yml +++ b/tasks/cloud_setup_basic.yml @@ -26,12 +26,16 @@ - config - name: add ansible root key - action: authorized_key user=root key='$FILE(${files}/common/ansible-pub-key)' + action: authorized_key user=root key="{{ item }}" + with_file: + - ${files}/common/ansible-pub-key tags: - config - name: add root keys for sysadmin-main and other allowed users - action: authorized_key user=root key='$PIPE(${auth_keys_from_fas} @sysadmin-main ${root_auth_users})' + action: authorized_key user=root key="{{ item }}" + with_pipe: + - {{ auth_keys_from_fas }} @sysadmin-main {{ root_auth_users }} tags: - config |
