From 7853f08a9ae092417e2b69800dbe4aa450600303 Mon Sep 17 00:00:00 2001 From: Bert-Jan Fikse Date: Wed, 20 Aug 2025 11:26:33 +0200 Subject: [PATCH 1/2] chore: set remote_user to root --- ansible.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ansible.cfg b/ansible.cfg index 48a8b6b..a2993f2 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,2 +1,3 @@ [defaults] -collections_paths = ./collections \ No newline at end of file +collections_paths = ./collections +remote_user = root \ No newline at end of file From 1c31a584dcb84e415b798cc9e32b501fd119c424 Mon Sep 17 00:00:00 2001 From: Bert-Jan Fikse Date: Wed, 20 Aug 2025 11:34:53 +0200 Subject: [PATCH 2/2] chore: add basic hosts and host-groups for now with ip, will be switched to domains --- inventories/prod/hosts.ini | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/inventories/prod/hosts.ini b/inventories/prod/hosts.ini index e69de29..a09549b 100644 --- a/inventories/prod/hosts.ini +++ b/inventories/prod/hosts.ini @@ -0,0 +1,18 @@ +[all_servers] +172.16.9.88 +192.168.100.72 ansible_port=2222 +192.168.100.73 + +[dmz] +172.16.9.88 + +[forgejo_servers] +192.168.100.72 ansible_port=2222 + +[nextcloud_servers] +192.168.100.73 + +[reverseproxy_servers] +172.16.9.88 +192.168.100.72 ansible_port=2222 +192.168.100.73 \ No newline at end of file