From 31a5994ec7aec62cb5e7a442d4cfe086c6167ed4 Mon Sep 17 00:00:00 2001 From: Noah Knegt Date: Thu, 30 Mar 2023 15:04:53 +0200 Subject: [PATCH 1/3] Add ansible user Signed-off-by: Noah Knegt --- inventory/hosts.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/inventory/hosts.yml b/inventory/hosts.yml index 48d1669..f033efa 100644 --- a/inventory/hosts.yml +++ b/inventory/hosts.yml @@ -38,3 +38,5 @@ all: equinox: children: equinox-servers: + ansible_connection: ssh + ansible_user: ansible -- 2.49.1 From ee687d2acaa221fe38cf6ae286a4f45433ef5186 Mon Sep 17 00:00:00 2001 From: Noah Knegt Date: Thu, 30 Mar 2023 15:06:10 +0200 Subject: [PATCH 2/3] Add docker role Signed-off-by: Noah Knegt --- site.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/site.yml b/site.yml index 8b66cfb..aaa4792 100644 --- a/site.yml +++ b/site.yml @@ -13,6 +13,7 @@ roles: - role: setup when: setup is defined + - role: docker # Clean up the system - hosts: datacenter -- 2.49.1 From 69c09dba50b99275360ecdaeba655e8e5199f7b4 Mon Sep 17 00:00:00 2001 From: Noah Knegt Date: Thu, 30 Mar 2023 15:06:44 +0200 Subject: [PATCH 3/3] Fix the docker role assignment Signed-off-by: Noah Knegt --- site.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/site.yml b/site.yml index aaa4792..ef6ea14 100644 --- a/site.yml +++ b/site.yml @@ -13,6 +13,10 @@ roles: - role: setup when: setup is defined + +- hosts: datacenter + remote_user: ansible + roles: - role: docker # Clean up the system -- 2.49.1