mirror of
https://github.com/ChristianLight/tutor.git
synced 2025-01-05 15:12:10 +00:00
11 lines
186 B
Bash
11 lines
186 B
Bash
|
#!/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"
|