Hello,

the latest patch may solve this bug but introduces another one...
If the root password is empty the command line turns out to be this:

/usr/bin/mysqladmin -u root "" ping

which results in this error:

/usr/bin/mysqladmin: Unknown command: ''

The solution will probably be:

do in line 67:

MYSQL_PSWD_STRING="-p\"$MYSQL_ROOT_PASSWORD\""

and replace the line 71

$MYSQLADMIN $MYSQL_HOST_STRING -u $MYSQL_ROOT_USER \
"$MYSQL_PSWD_STRING" ping

with

eval $MYSQLADMIN $MYSQL_HOST_STRING -u $MYSQL_ROOT_USER \
$MYSQL_PSWD_STRING ping

use "eval" for every other line containing "$MYSQL_ROOT_PASSWORD"

Regards,

        Peter


-- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Reply via email to