ansible: fix ssh role syntax for consistency

This commit is contained in:
Fernando Schauenburg 2020-12-17 20:18:34 +01:00
parent a1c3e067bd
commit d23b76dcf7

View file

@ -1,12 +1,13 @@
- name: Create the SSH directory
file:
path: ~/.ssh
state: directory
path: ~/.ssh
state: directory
- name: Deploy SSH config
file:
src: "{{ role_path }}/files/config"
dest: ~/.ssh/config
state: link
force: yes
src: "{{ role_path }}/files/config"
dest: ~/.ssh/config
state: link
force: yes