Merge pull request #167 from zabbix/master

Fixed MySQL user creation
This commit is contained in:
Alexey Pustovalov
2017-10-27 18:54:45 +03:00
committed by GitHub
20 changed files with 20 additions and 20 deletions

View File

@ -136,7 +136,7 @@ check_variables_mysql() {
DB_SERVER_ROOT_PASS=${MYSQL_ROOT_PASSWORD:-""}
fi
[ -n "${MYSQL_USER}" ] || CREATE_ZBX_DB_USER=true
[ -n "${MYSQL_USER}" ] && CREATE_ZBX_DB_USER=true
# If root password is not specified use provided credentials
DB_SERVER_ROOT_USER=${DB_SERVER_ROOT_USER:-${MYSQL_USER}}

View File

@ -136,7 +136,7 @@ check_variables_mysql() {
DB_SERVER_ROOT_PASS=${MYSQL_ROOT_PASSWORD:-""}
fi
[ -n "${MYSQL_USER}" ] || CREATE_ZBX_DB_USER=true
[ -n "${MYSQL_USER}" ] && CREATE_ZBX_DB_USER=true
# If root password is not specified use provided credentials
DB_SERVER_ROOT_USER=${DB_SERVER_ROOT_USER:-${MYSQL_USER}}