6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-09-28 20:29:02 +00:00
tutor/openedx/wait-for-greenlight.sh
Régis Behmo bda9e042f9 No longer refer to 'edxapp'
'edxapp' is an old reference to the vagrant image and it does not make
much sense.
2018-04-12 15:45:59 +02:00

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/"