2014-07-27 22:04:57 -04:00
|
|
|
# This section is managed by SaltStack, DO NOT EDIT
|
|
|
|
#
|
|
|
|
# SALTSTACK
|
|
|
|
# TYPE DATABASE USER ADDRESS METHOD
|
|
|
|
{% if 'acls' in pillar.get('postgres', {}) %}
|
|
|
|
{% for acl in salt['pillar.get']('postgres:acls') %}
|
|
|
|
{% if acl[0] == 'local' %}
|
|
|
|
{{ acl[0] }} {{ acl[1] }} {{ acl[2] }} {{ acl[3] if acl|length > 3 else 'md5' }}
|
|
|
|
{% else %}
|
|
|
|
{{ acl[0] }} {{ acl[1] }} {{ acl[2] }} {{ acl[3] }} {{ acl[4] if acl|length > 4 else 'md5' }}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
# /SALTSTACK
|
2014-05-15 14:44:39 -07:00
|
|
|
|
|
|
|
# DO NOT DISABLE!
|
|
|
|
# If you change this first entry you will need to make sure that the
|
|
|
|
# database superuser can access the database using some other method.
|
|
|
|
# Noninteractive access to all databases is required during automatic
|
|
|
|
# maintenance (custom daily cronjobs, replication, and similar tasks).
|
|
|
|
#
|
|
|
|
# Database administrative login by Unix domain socket
|
|
|
|
local all postgres peer
|
|
|
|
|
|
|
|
|
|
|
|
# "local" is for Unix domain socket connections only
|
|
|
|
local all all trust
|
|
|
|
# IPv4 local connections:
|
|
|
|
host all all 127.0.0.1/32 trust
|
|
|
|
# IPv6 local connections:
|
2014-07-27 22:04:57 -04:00
|
|
|
host all all ::1/128 trust
|