mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-17 10:10:31 +00:00
Added the ability to add custom configuration to the postgresql.conf configuration file.
This commit is contained in:
parent
1c1417e1b8
commit
c9aeea4c66
3 changed files with 30 additions and 1 deletions
|
@ -34,3 +34,8 @@ postgres:
|
|||
template: 'template0'
|
||||
lc_ctype: 'C.UTF-8'
|
||||
lc_collate: 'C.UTF-8'
|
||||
|
||||
# This section will append your configuration to postgresql.conf.
|
||||
postgresconf: |
|
||||
listen_addresses = 'localhost,*'
|
||||
|
||||
|
|
|
@ -23,6 +23,19 @@ libpq-dev:
|
|||
python-dev:
|
||||
pkg.installed
|
||||
|
||||
{% if 'postgresconf' in pillar.get('postgres', {}) %}
|
||||
postgresql-conf:
|
||||
file.blockreplace:
|
||||
- name: {{ postgres.conf_dir }}/postgresql.conf
|
||||
- marker_start: "# Managed by SaltStack: listen_addresses: please do not edit"
|
||||
- marker_end: "# Managed by SaltStack: end of salt managed zone --"
|
||||
- content: {{ salt['pillar.get']('postgres:postgresconf') }}
|
||||
- show_changes: True
|
||||
- append_if_not_found: True
|
||||
- watch_in:
|
||||
- service: postgresql
|
||||
{% endif %}
|
||||
|
||||
{% if 'pg_hba.conf' in pillar.get('postgres', {}) %}
|
||||
pg_hba.conf:
|
||||
file.managed:
|
||||
|
@ -38,6 +51,7 @@ pg_hba.conf:
|
|||
- service: postgresql
|
||||
{% endif %}
|
||||
|
||||
|
||||
{% if 'users' in pillar.get('postgres', {}) %}
|
||||
{% for name, user in salt['pillar.get']('postgres:users').items() %}
|
||||
postgres-user-{{ name }}:
|
||||
|
@ -70,3 +84,4 @@ postgres-db-{{ name }}:
|
|||
{% endif %}
|
||||
{% endfor%}
|
||||
{% endif %}
|
||||
|
||||
|
|
|
@ -4,15 +4,24 @@
|
|||
'python': 'python-pygresql',
|
||||
'service': 'postgresql',
|
||||
'pg_hba': '/etc/postgresql/9.1/main/pg_hba.conf',
|
||||
'conf_dir': '/etc/postgresql/9.1/main',
|
||||
},
|
||||
'RedHat': {
|
||||
'pkg': 'postgresql',
|
||||
'python': 'postgresql-python',
|
||||
'service': 'postgresql',
|
||||
'conf_dir': '/var/lib/pgsql/data',
|
||||
},
|
||||
'Arch': {
|
||||
'pkg': 'postgresql',
|
||||
'python': 'python-psycopg2',
|
||||
'service': 'postgresql',
|
||||
'conf_dir': '/var/lib/pgsql/data',
|
||||
},
|
||||
}, merge=salt['pillar.get']('postgres:lookup')) %}
|
||||
}, merge=salt['grains.filter_by']({
|
||||
'14.04': {
|
||||
'pkg': 'postgresql',
|
||||
'pkg_dev': 'postgresql-server-dev-9.3',
|
||||
'conf_dir': '/etc/postgresql/9.3/main',
|
||||
},
|
||||
}, grain='lsb_distrib_release', merge=salt['pillar.get']('postgres:lookup'))) %}
|
||||
|
|
Loading…
Add table
Reference in a new issue