From d3ec15376e3d38855159b90d4ca3b64aad9b3fc5 Mon Sep 17 00:00:00 2001 From: Fred Dixon Date: Fri, 13 Mar 2015 17:53:58 -0400 Subject: [PATCH] Update bbb-conf Change method to detect whether HTML5 server (specifically meteor) is running. --- bigbluebutton-config/bin/bbb-conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bigbluebutton-config/bin/bbb-conf b/bigbluebutton-config/bin/bbb-conf index 1c6104413d..13cf26bb89 100644 --- a/bigbluebutton-config/bin/bbb-conf +++ b/bigbluebutton-config/bin/bbb-conf @@ -289,8 +289,8 @@ start_bigbluebutton () { echo -n "Waiting for Meteor (HTML5 server) to finish starting up (this may take a minute): " start bbb-html5 - if ! wget -q -O - http://$BBB_WEB/html5client/check | grep __meteor-css__ > /dev/null; then - while ! wget -q -O - http://$BBB_WEB/html5client/check | grep __meteor-css__ > /dev/null; do + if ! wget -q -O - http://$BBB_WEB/html5client/check | grep running > /dev/null; then + while ! wget -q -O - http://$BBB_WEB/html5client/check | grep running > /dev/null; do echo -n "." sleep 1 done