Update postgresql-v5-install.sh

ensure that the PostgreSQL database server uses UTF-8 encoding and collation
This commit is contained in:
tteckster 2023-03-11 12:47:11 -05:00 committed by GitHub
parent 9bfbb57f11
commit e6db5a353b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -47,6 +47,9 @@ function msg_error() {
msg_info "Setting up Container OS " msg_info "Setting up Container OS "
sed -i "/$LANG/ s/\(^# \)//" /etc/locale.gen sed -i "/$LANG/ s/\(^# \)//" /etc/locale.gen
locale-gen >/dev/null locale-gen >/dev/null
LANG=$(grep -v '^#' /etc/locale.gen | grep -o '^[^ ]*')
update-locale LANG=$LANG
echo "export LANG=$LANG" >> ~/.bashrc
echo $tz > /etc/timezone echo $tz > /etc/timezone
ln -sf /usr/share/zoneinfo/$tz /etc/localtime ln -sf /usr/share/zoneinfo/$tz /etc/localtime
for ((i=RETRY_NUM; i>0; i--)); do for ((i=RETRY_NUM; i>0; i--)); do