Skip to content
Snippets Groups Projects
Commit 3a236c57 authored by Daniel's avatar Daniel
Browse files

ENH: Allowing configuration on remote host.

parent beb06442
No related branches found
No related tags found
No related merge requests found
......@@ -132,6 +132,12 @@ else
then
MYSQL_CONNECTION="$MYSQL_CONNECTION --password=$MYSQL_USER_PASSWORD"
fi
if [ "$MYSQL_HOST" != "localhost" ]; then
MYSQL_CONNECTION="$MYSQL_CONNECTION --host $MYSQL_HOST"
if [ "$MYSQL_PORT" ]; then
MYSQL_CONNECTION="$MYSQL_CONNECTION --port $MYSQL_PORT"
fi
fi
fi
if [ -n "$PATCH" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment