- 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:
Jon Nelson 2016-07-19 10:10:56 -05:00
parent 1c72c7c3a1
commit 90cfea1e15

View file

@ -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: