mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-16 01:30:25 +00:00
- change C.UTF-8 to en_us.UTF-8 in example pillar, as the former does not
work on all distributions
This commit is contained in:
parent
1c72c7c3a1
commit
90cfea1e15
1 changed files with 5 additions and 5 deletions
|
@ -5,7 +5,7 @@ postgres:
|
|||
command: service postgresql initdb
|
||||
test: test -f /path/to/some/file
|
||||
env:
|
||||
LC_ALL: C.UTF-8
|
||||
LC_ALL: en_US.UTF-8
|
||||
|
||||
use_upstream_repo: False
|
||||
|
||||
|
@ -57,8 +57,8 @@ postgres:
|
|||
owner: 'localUser'
|
||||
user: 'localUser'
|
||||
template: 'template0'
|
||||
lc_ctype: 'C.UTF-8'
|
||||
lc_collate: 'C.UTF-8'
|
||||
lc_ctype: 'en_US.UTF-8'
|
||||
lc_collate: 'en_US.UTF-8'
|
||||
# optional schemas to enable on database
|
||||
schemas:
|
||||
uuid_ossp:
|
||||
|
@ -71,8 +71,8 @@ postgres:
|
|||
owner: 'localUser'
|
||||
user: 'remoteUser'
|
||||
template: 'template0'
|
||||
lc_ctype: 'C.UTF-8'
|
||||
lc_collate: 'C.UTF-8'
|
||||
lc_ctype: 'en_US.UTF-8'
|
||||
lc_collate: 'en_US.UTF-8'
|
||||
tablespace: 'my_space'
|
||||
# optional extensions to enable on database
|
||||
# extensions:
|
||||
|
|
Loading…
Add table
Reference in a new issue