Skip to content

Commit

Permalink
Allow empty MYSQL_USERNAME
Browse files Browse the repository at this point in the history
Fixes olafz#26
  • Loading branch information
Cougar authored Mar 1, 2019
1 parent d5da8be commit 200791b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clustercheck
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ if [ -f /etc/sysconfig/clustercheck ]; then
. /etc/sysconfig/clustercheck
fi

MYSQL_USERNAME="${MYSQL_USERNAME:=-clustercheckuser}"
MYSQL_USERNAME="${MYSQL_USERNAME-clustercheckuser}"
MYSQL_PASSWORD="${MYSQL_PASSWORD-clustercheckpassword!}"
AVAILABLE_WHEN_DONOR=${AVAILABLE_WHEN_DONOR:-0}
ERR_FILE="${ERR_FILE:-/dev/null}"
Expand Down

0 comments on commit 200791b

Please sign in to comment.