diff --git a/tasks/ssh.yml b/tasks/ssh.yml index ca79cda..5c25883 100644 --- a/tasks/ssh.yml +++ b/tasks/ssh.yml @@ -24,12 +24,12 @@ - name: "SSH | Ensure configuration exists" ansible.builtin.file: - path: .ssh/config + path: ~/.ssh/config state: touch mode: "0644" - name: "SSH | Create SSH configuration" ansible.builtin.blockinfile: - path: .ssh/config + path: ~/.ssh/config marker: "### {mark} ANSIBLE MANAGED BLOCK" block: "{{ lookup('template', 'ssh_config.j2') }}"