fix invalid GID error message

This commit is contained in:
Asif Bacchus 2020-11-28 04:20:32 -07:00
parent 7afbb847be
commit 60212b0c39
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ fi
if [ "$(isInt "$MYSQL_GID")" -ge 0 ]; then
printf "Setting mysql GID to %s\n" "$MYSQL_GID"
else
printf "'%s' is not a valid value for MYSQL_GID\n" "$MYSQL_UID"
printf "'%s' is not a valid value for MYSQL_GID\n" "$MYSQL_GID"
exit 1
fi
if [ "$MYSQL_SKIP_NAME_RESOLVE" != "TRUE" ] && [ "$MYSQL_SKIP_NAME_RESOLVE" != "FALSE" ]; then