mirror of
https://github.com/ChristianLight/tutor.git
synced 2025-01-09 08:30:18 +00:00
11 lines
154 B
Bash
11 lines
154 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "Checking system..."
|
||
|
until ./manage.py lms --settings=production check
|
||
|
do
|
||
|
printf "."
|
||
|
sleep 1
|
||
|
done
|
||
|
|
||
|
echo -e "\nSystem is ready \\o/"
|