Skip to content
Snippets Groups Projects
Commit 2168e7da authored by jurgenhaas's avatar jurgenhaas
Browse files

Remove deprecation warnings from Ansible 2.0.1.0

parent 98027248
No related branches found
No related tags found
No related merge requests found
......@@ -20,13 +20,13 @@
group=sftp
home=/home/{{ item.username }}
shell=/bin/false
with_items: sftp_user
with_items: '{{ sftp_user }}'
- name: "SFTP | Install Key"
authorized_key:
user={{ item.username }}
key="{{ item.key }}"
with_items: sftp_user
with_items: '{{ sftp_user }}'
- name: "SFTP | Create Data Directory"
file:
......
......@@ -32,4 +32,4 @@
owner="root"
group="root"
recurse=yes
with_items: svnpaths.stdout_lines
with_items: '{{ svnpaths.stdout_lines }}'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment