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"