mirror of https://github.com/MISP/misp-docker
Update run.sh
Initial connection can't be to specific database, since that doesn't exist yet
parent
431ef652b7
commit
94c43c62b8
|
@ -60,7 +60,7 @@ if [ -r /.firstboot.tmp ]; then
|
||||||
echo "MYSQL_PASSWORD is set to '$MYSQL_PASSWORD'"
|
echo "MYSQL_PASSWORD is set to '$MYSQL_PASSWORD'"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ret=`echo 'SHOW TABLES;' | mysql -u $MYSQL_USER --password="$MYSQL_PASSWORD" -h $MYSQL_HOST -P 3306 $MYSQL_DATABASE # 2>&1`
|
ret=`echo 'SHOW TABLES;' | mysql -u $MYSQL_USER --password="$MYSQL_PASSWORD" -h $MYSQL_HOST -P 3306 # 2>&1`
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
echo "Connected to database successfully!"
|
echo "Connected to database successfully!"
|
||||||
found=0
|
found=0
|
||||||
|
|
Loading…
Reference in New Issue