From cb937ec12905b99dd279b9fd045d9cf08253c1da Mon Sep 17 00:00:00 2001 From: Fred Dixon Date: Fri, 10 Feb 2012 14:45:41 -0500 Subject: [PATCH] changed --setfreeswitchip to --setsipip in bbb-conf --- bigbluebutton-config/bin/bbb-conf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bigbluebutton-config/bin/bbb-conf b/bigbluebutton-config/bin/bbb-conf index e4d8ca5fa0..eb403d4036 100755 --- a/bigbluebutton-config/bin/bbb-conf +++ b/bigbluebutton-config/bin/bbb-conf @@ -179,7 +179,7 @@ usage() { echo "Configuration:" echo " --version Display BigBlueButton version (packages)" echo " --setip Set IP/hostname for BigBlueButton" - echo " --setfreeswtichip Set IP for FreeSWITCH" + echo " --setsipip Set IP for FreeSWITCH" echo " --setsalt Change the security salt in bigbluebutton.properties" echo echo "Monitoring:" @@ -511,11 +511,11 @@ while [ $# -gt 0 ]; do continue fi - if [ "$1" = "-setfreeswitchip" -o "$1" = "--setfreeswitchip" ]; then + if [ "$1" = "-setsipip" -o "$1" = "--setsipip" ]; then if test -z "${2}"; then usage; fi - FREESWITCHIP="${2}" + SIPIP="${2}" shift; shift continue fi @@ -547,10 +547,10 @@ if [ $SALT ]; then echo fi -if [ $FREESWITCHIP ]; then +if [ $SIPIP ]; then need_root - change_var_ip /usr/share/red5/webapps/sip/WEB-INF/bigbluebutton-sip.properties sip.server.host $FREESWITCHIP - echo "Changed the value for sip.server.host to $FREESWITCHIP" + change_var_ip /usr/share/red5/webapps/sip/WEB-INF/bigbluebutton-sip.properties sip.server.host $SIPIP + echo "Changed the value for sip.server.host to $SIPIP" echo CLEAN=1 fi