7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-29 09:43:29 +00:00
tutor/edxapp/wait-for-greenlight.sh
Régis Behmo 1f7e68c662 Working devstack
This allows the user to run their own devstack inside the containers.
Yay!

Also, we handle file permissions cleanly: in docker-entrypoint.sh we
chmod the data and edx-platform files to the same UID of the user on the
host machine. No more permission headaches!
2018-04-12 11:36:14 +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/"