From 9b5526b47e7900c1918af1bec2bef4547ccb21b1 Mon Sep 17 00:00:00 2001 From: phil Date: Mon, 8 May 2023 11:54:10 +0200 Subject: [PATCH] Fix ssh config path --- tasks/ssh.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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') }}"