Merge "Add line in mysql setup to ensure that sbin is in path"

This commit is contained in:
Zuul 2018-07-06 18:37:02 +00:00 committed by Gerrit Code Review
commit 2e18fdc842
1 changed files with 10 additions and 0 deletions

View File

@ -9,12 +9,22 @@ wait_for_line () {
cat "$2" >/dev/null &
}
# insert sbin into path if it exists and isnt already there
echo $PATH | grep -q "/usr/sbin"
if [ $? -ne 0 ] && [ -d "/usr/sbin" ]; then
echo "SBIN NOT IN PATH"
export PATH="$PATH:/usr/sbin"
echo "$PATH"
fi
# If test DB url is provided, run tests with it
if [[ "$REFSTACK_TEST_MYSQL_URL" ]]
then
$*
exit $?
fi
# Else setup mysql base for tests.
# Start MySQL process for tests
MYSQL_DATA=`mktemp -d /tmp/refstack-mysql-XXXXX`