28 lines
638 B
YAML
28 lines
638 B
YAML
- hosts: synapse
|
|
# become: yes
|
|
pre_tasks:
|
|
- apt:
|
|
name: sudo
|
|
- lineinfile:
|
|
path: /etc/sudoers
|
|
line: 'root ALL = (ALL) ALL'
|
|
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", |