6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-10-01 13:49:01 +00:00
tutor/openedx/bin/wait-for-greenlight.sh

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