From 1d2581a00542f55ba736fd6bf23f7d299ad09dcd Mon Sep 17 00:00:00 2001 From: Jason Rothstein Date: Tue, 26 Oct 2021 23:12:53 -0500 Subject: [PATCH] Make git checkout happy with SSH URLs --- tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/main.yml b/tasks/main.yml index a47da60..74fbb0f 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -150,6 +150,7 @@ - item.fqdn is defined - item.repo is defined ansible.builtin.git: + accept_hostkey: 'yes' dest: '/srv/http/{{ item.fqdn }}' repo: '{{ item.repo }}' loop: '{{ http_vhost }}'