O
Но не вилел из короьки
Size: a a a
O
IU
O
IU
O
O
IU
C
IU
C
C
The postgresql module allows you to manage packages, services, databases, users, and common security settings in PostgreSQL
O
O
The postgresql module allows you to manage packages, services, databases, users, and common security settings in PostgreSQL
C
IU
O
O
Use the PostgreSQL 9.5 packages and set some postgresql.conf options and pg_hba.conf entries:
---
- hosts: dbservers
remote_user: root
vars:
postgresql_version: 9.5
postgresql_conf:
- listen_addresses: "''" # disable network listening (listen on unix socket only)
- max_connections: 50 # decrease connection limit
postgresql_pg_hba_conf:
- host all all 10.0.0.0/8 md5
roles:
- postgresql
IU