2019-09-24 09:41:01 +00:00
|
|
|
- hosts: synapse
|
2019-10-03 02:04:52 +00:00
|
|
|
become: yes
|
2019-09-24 09:41:01 +00:00
|
|
|
tasks:
|
|
|
|
- pip:
|
|
|
|
name: psycopg2
|
|
|
|
state: present
|
|
|
|
roles:
|
|
|
|
- role: geerlingguy.postgresql
|
|
|
|
postgresql_databases:
|
|
|
|
- name: "{{ synapse_dbname }}"
|
|
|
|
postgresql_users:
|
|
|
|
- name: "{{ synapse_dbuser }}"
|
|
|
|
password: "{{ synapse_dbpw }}"
|
|
|
|
postgresql_global_config_options:
|
|
|
|
- option: listen_addresses
|
|
|
|
value: "*"
|
|
|
|
|
|
|
|
|
|
|
|
# username: "postgres",
|
|
|
|
# password: "postgres",
|
|
|
|
# database: "imago_dev",
|
|
|
|
# hostname: "localhost",
|