Skip to content

Commit

Permalink
Merge branch 'master' of github.com:bigbluebutton/bigbluebutton
Browse files Browse the repository at this point in the history
  • Loading branch information
ritzalam committed Nov 10, 2010
2 parents 2e7c164 + ad04fc4 commit 312b3f2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bigbluebutton-client/resources/config.xml.template
Expand Up @@ -42,7 +42,7 @@
<module name="VideoconfModule" url="VideoconfModule.swf?v=VERSION"
uri="rtmp://HOST/video"
dependsOn="ViewersModule"
videoQuality="100"
videoQuality="70"
presenterShareOnly="false"
/>

Expand Down
5 changes: 2 additions & 3 deletions bigbluebutton-config/bin/bbb-conf
Expand Up @@ -49,7 +49,7 @@ elif cat /usr/share/red5/webapps/bigbluebutton/WEB-INF/red5-web.xml | grep -v '<
VOICE_CONFERENCE="bbb-voice-freeswitch.xml"
fi

IP=$(ifconfig | grep -v '127.0.0.1' | grep -E "[0-9]*\.[0-9]*\.[0-9]*\.[0-9]*" | cut -d: -f2 | awk '{ print $1}')
IP=$(ifconfig | grep -v '127.0.0.1' | grep -E "[0-9]*\.[0-9]*\.[0-9]*\.[0-9]*" | head -1 | cut -d: -f2 | awk '{ print $1}')

GENTOO=$(uname -r | grep gentoo | cut -d- -f2);
TOMCAT=""
Expand Down Expand Up @@ -319,7 +319,6 @@ start_bigbluebutton () {
echo -n "."
sleep 1
done
echo
fi

if ! wget http://$NGINX_IP/bigbluebutton/api -O - --quiet | grep -q SUCCESS; then
Expand Down Expand Up @@ -1192,7 +1191,7 @@ check_state() {
fi

SIP_SERVER_HOST=$(cat /usr/share/red5/webapps/sip/WEB-INF/bigbluebutton-sip.properties | sed -n '/sip.server.host=/{s/.*=//;s/;//;p}')
IP=$(ifconfig | grep -v '127.0.0.1' | grep -E "[0-9]*\.[0-9]*\.[0-9]*\.[0-9]*" | cut -d: -f2 | awk '{ print $1}')
IP=$(ifconfig | grep -v '127.0.0.1' | grep -E "[0-9]*\.[0-9]*\.[0-9]*\.[0-9]*" | head -1 | cut -d: -f2 | awk '{ print $1}')
if [ $SIP_SERVER_HOST != $IP ]; then
echo
echo "# The IP address ($SIP_SERVER_HOST) set for sip.server.host in"
Expand Down
2 changes: 1 addition & 1 deletion bigbluebutton-config/web/index.html
@@ -1,4 +1,4 @@
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
Expand Down

0 comments on commit 312b3f2

Please sign in to comment.