Commit a660bde6 authored by Jérome Perrin's avatar Jérome Perrin

recipe/postgres: use C.UTF-8 locale

en_US.UTF-8 might not be installed and in such case postgres refuses to start.
parent c547f36c
Pipeline #14532 failed with stage
in 0 seconds
......@@ -151,10 +151,10 @@ class Recipe(GenericBaseRecipe):
max_connections = 100
datestyle = 'iso, mdy'
lc_messages = 'en_US.UTF-8'
lc_monetary = 'en_US.UTF-8'
lc_numeric = 'en_US.UTF-8'
lc_time = 'en_US.UTF-8'
lc_messages = 'C.UTF-8'
lc_monetary = 'C.UTF-8'
lc_numeric = 'C.UTF-8'
lc_time = 'C.UTF-8'
default_text_search_config = 'pg_catalog.english'
unix_socket_directories = '%s'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment