Closed oyale closed 6 months ago
Just pushed a new commit to fix the linter errors related to indentation in the tasks/variables.yml
file.
This pr has been marked 'stale' due to lack of recent activity. If there is no further activity, the issue will be closed in another 30 days. Thank you for your contribution!
Please read this blog post to see the reasons why I mark issues as stale.
Hey @geerlingguy!
Could you take some time to do a review of this PR?
Thanks! :smiley:
This pr has been marked 'stale' due to lack of recent activity. If there is no further activity, the issue will be closed in another 30 days. Thank you for your contribution!
Please read this blog post to see the reasons why I mark issues as stale.
This pr has been closed due to inactivity. If you feel this is in error, please reopen the issue or file a new issue with the relevant details.
Hello,
This Pull Request introduces a refinement to the
Ensure PostgreSQL databases are present
task, providing an option for setting a global default locale. While the existing role does permit locale modification at the individual database level, I observed that there are use cases where one might need to change the default locale across all databases without having to specifylc_collate
andlc_ctype
for each one. This led me to propose this enhancement.The following lines in
databases.yml
have been updated to use the newpostgresql_default_locale
variable when individuallc_collate
andlc_ctype
values are not provided:I have added the
postgresql_default_locale
variable to thedefaults/main.yml
file. This new variable allows users to define a global default locale:Additionally, I have updated the README to explain the purpose of this new variable and how to use it. The documentation clarifies that
postgresql_default_locale
is used to set defaultlc_collate
andlc_ctype
values for all databases, unless specifically overridden for a particular database.This modification aims to increase the role's versatility and simplify PostgreSQL database configuration by offering a global default locale setting.
I look forward to hearing your thoughts on this proposed change.
Thank you.