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
|
command: service postgresql initdb
|
||||||
test: test -f /path/to/some/file
|
test: test -f /path/to/some/file
|
||||||
env:
|
env:
|
||||||
LC_ALL: C.UTF-8
|
LC_ALL: en_US.UTF-8
|
||||||
|
|
||||||
use_upstream_repo: False
|
use_upstream_repo: False
|
||||||
|
|
||||||
|
@ -57,8 +57,8 @@ postgres:
|
||||||
owner: 'localUser'
|
owner: 'localUser'
|
||||||
user: 'localUser'
|
user: 'localUser'
|
||||||
template: 'template0'
|
template: 'template0'
|
||||||
lc_ctype: 'C.UTF-8'
|
lc_ctype: 'en_US.UTF-8'
|
||||||
lc_collate: 'C.UTF-8'
|
lc_collate: 'en_US.UTF-8'
|
||||||
# optional schemas to enable on database
|
# optional schemas to enable on database
|
||||||
schemas:
|
schemas:
|
||||||
uuid_ossp:
|
uuid_ossp:
|
||||||
|
@ -71,8 +71,8 @@ postgres:
|
||||||
owner: 'localUser'
|
owner: 'localUser'
|
||||||
user: 'remoteUser'
|
user: 'remoteUser'
|
||||||
template: 'template0'
|
template: 'template0'
|
||||||
lc_ctype: 'C.UTF-8'
|
lc_ctype: 'en_US.UTF-8'
|
||||||
lc_collate: 'C.UTF-8'
|
lc_collate: 'en_US.UTF-8'
|
||||||
tablespace: 'my_space'
|
tablespace: 'my_space'
|
||||||
# optional extensions to enable on database
|
# optional extensions to enable on database
|
||||||
# extensions:
|
# extensions:
|
||||||
|
|
Loading…
Add table
Reference in a new issue