mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-16 10:05:18 +00:00
bda9e042f9
'edxapp' is an old reference to the vagrant image and it does not make much sense.
11 lines
145 B
Bash
Executable File
11 lines
145 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Checking system..."
|
|
until ./manage.py $SERVICE_VARIANT check
|
|
do
|
|
printf "."
|
|
sleep 1
|
|
done
|
|
|
|
echo -e "\nSystem is ready \\o/"
|