Workaround for #24862 ansible issue created
This commit is contained in:
ArseniiPetrovich 2018-04-26 13:55:29 +03:00
parent fa0078d1e9
commit 8a53ced0c0
1 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,10 @@
user: name={{ item.name }} groups={{ item.addgroups | default('') }} shell=/bin/bash append=yes
with_items: "{{ users }}"
#Temporary directive created to workaround #24862 ansible issue
- name: Setup permission
file: path={{ home }} group={{ username }} owner={{ username }} recurse=yes state=directory
- include_tasks: nested_authorized_key.yml
with_items: "{{ users }}"
loop_control: