From d322d2ede2133e9f36b2d0631fc48cb277e2f8eb Mon Sep 17 00:00:00 2001 From: Thomas Maurice Date: Wed, 6 Dec 2023 20:49:56 +0100 Subject: [PATCH] rename inventory --- ansible.cfg | 2 +- inventory => inventory.ini | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) rename inventory => inventory.ini (57%) diff --git a/ansible.cfg b/ansible.cfg index b6cb0a7..865284a 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -9,4 +9,4 @@ gathering = implicit gather_subset = all inject_facts_as_vars = True roles_path = roles -inventory = inventory +inventory = inventory.ini diff --git a/inventory b/inventory.ini similarity index 57% rename from inventory rename to inventory.ini index 32f70fe..f1035a8 100644 --- a/inventory +++ b/inventory.ini @@ -1,10 +1,10 @@ [all] # Replace this with your hostname and IP address your-db-host.local ansible_ssh_host="1.2.3.4" -your-docker-host.local ansible_ssh_host="5.6.7.8" +your-synapse-host.local ansible_ssh_host="5.6.7.8" [db] your-db-host.local ansible_ssh_host="1.2.3.4" -[docker] -your-docker-host.local ansible_ssh_host="5.6.7.8" +[synapse] +your-synapse-host.local ansible_ssh_host="5.6.7.8"