Fixed postinstall mysql root password message

Signed-off-by: Janos SUTO <sj@acts.hu>
This commit is contained in:
Janos SUTO 2020-04-15 10:53:24 +02:00
parent 704030b282
commit b1dabfefc5

View File

@ -234,7 +234,7 @@ gather_mysql_account() {
askNoEcho "Please enter mysql password for ${MYSQL_USERNAME}" "" askNoEcho "Please enter mysql password for ${MYSQL_USERNAME}" ""
MYSQL_PASSWORD="$response" MYSQL_PASSWORD="$response"
askNonBlankNoEcho "Please enter mysql root password" "" askNonBlankNoEcho "Please enter mysql root password. If its a recent version of mysql and uses socket authentication, then any string would do here" ""
MYSQL_ROOT_PASSWORD="$response" MYSQL_ROOT_PASSWORD="$response"
s=$(echo "use information_schema; select TABLE_NAME from TABLES where TABLE_SCHEMA='${MYSQL_DATABASE}'" | mysql -h "$MYSQL_HOSTNAME" -u root --password="$MYSQL_ROOT_PASSWORD") s=$(echo "use information_schema; select TABLE_NAME from TABLES where TABLE_SCHEMA='${MYSQL_DATABASE}'" | mysql -h "$MYSQL_HOSTNAME" -u root --password="$MYSQL_ROOT_PASSWORD")