21 lines
495 B
YAML
21 lines
495 B
YAML
|
- hosts: synapse
|
||
|
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",
|