diff --git a/ansible.cfg b/ansible.cfg index b6cb0a74a50cbb765f4133e647dcb444a9809cbe..865284a12ce89b01ad65b787a1e520e5ef5ff2d1 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 32f70fea114792568192db9a36d176f24eb7d82d..f1035a85dd5b9dd46a9676e3c027d0c585545fcf 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"