ANXS / postgresql

Fairly full featured Ansible role for Postgresql.
http://anxs.io/
MIT License
855 stars 576 forks source link

geqo GUC is wrong in j2 conf files: #412

Closed gclough closed 5 years ago

gclough commented 5 years ago

geqo GUC is wrong in j2 conf files:

[gclough@localhost templates (fix_pg11_postgresql_conf)]$ grep ^geqo' ' *j2
postgresql.conf-10.j2:geqo = {{'on' if postgresql_enable_tidscan else 'off'}}
postgresql.conf-11.j2:geqo = {{ 'on' if postgresql_enable_tidscan else 'off' }}
postgresql.conf-9.1.j2:geqo = {{'on' if postgresql_enable_tidscan else 'off'}}
postgresql.conf-9.2.j2:geqo = {{'on' if postgresql_enable_tidscan else 'off'}}
postgresql.conf-9.3.j2:geqo = {{'on' if postgresql_enable_tidscan else 'off'}}
postgresql.conf-9.4.j2:geqo = {{'on' if postgresql_enable_tidscan else 'off'}}
postgresql.conf-9.5.j2:geqo = {{'on' if postgresql_enable_tidscan else 'off'}}
postgresql.conf-9.6.j2:geqo = {{'on' if postgresql_enable_tidscan else 'off'}}
gclough commented 5 years ago

Fixed in #415