We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MYSQL_USERNAME
percona-clustercheck/clustercheck
Line 38 in d5da8be
always sets MYSQL_USERNAME to "clustercheckuser" if it is missing or empty. This will add --user parameter here
--user
Lines 49 to 51 in d5da8be
and with that it always overrides username in /etc/my.cnf.
/etc/my.cnf
The right expansion should be:
MYSQL_USERNAME="${MYSQL_USERNAME-clustercheckuser}"
Also look at #23 (comment)
The text was updated successfully, but these errors were encountered:
Allow empty MYSQL_USERNAME
200791b
Fixes olafz#26
No branches or pull requests
percona-clustercheck/clustercheck
Line 38 in d5da8be
always sets
MYSQL_USERNAME
to "clustercheckuser" if it is missing or empty. This will add--user
parameter herepercona-clustercheck/clustercheck
Lines 49 to 51 in d5da8be
and with that it always overrides username in
/etc/my.cnf
.The right expansion should be:
MYSQL_USERNAME="${MYSQL_USERNAME-clustercheckuser}"
Also look at #23 (comment)
The text was updated successfully, but these errors were encountered: