6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2025-01-05 15:12:10 +00:00
tutor/edxapp/wait-for-mysql.sh

11 lines
186 B
Bash
Raw Normal View History

2017-12-26 00:16:35 +00:00
#!/bin/bash
echo "Waiting for mysql database"
until echo "show tables;" | ./manage.py lms --settings=production dbshell
do
printf "."
sleep 1
done
echo -e "\nmysql database ready"