mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-16 07:40:44 +00:00
11 lines
186 B
Bash
Executable File
11 lines
186 B
Bash
Executable File
#!/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"
|