mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
Added to ejabberdctl an experimental variable EJABBERD_BYPASS_WARNINGS
SVN Revision: 2804
This commit is contained in:
parent
79be929d96
commit
b9e57a341d
@ -16,7 +16,7 @@ release:
|
|||||||
@echo "* Do not forget to update the version number in src/ejabberd.app!"
|
@echo "* Do not forget to update the version number in src/ejabberd.app!"
|
||||||
@echo "* Do not forget to update the features in introduction.tex (including \new{} and \improved{} tags)."
|
@echo "* Do not forget to update the features in introduction.tex (including \new{} and \improved{} tags)."
|
||||||
@echo "Press any key to continue"
|
@echo "Press any key to continue"
|
||||||
@read foo
|
##@read foo
|
||||||
@echo "% ejabberd version (automatically generated)." > version.tex
|
@echo "% ejabberd version (automatically generated)." > version.tex
|
||||||
@echo "\newcommand{\version}{"`sed '/vsn/!d;s/\(.*\)"\(.*\)"\(.*\)/\2/' ../src/ejabberd.app`"}" >> version.tex
|
@echo "\newcommand{\version}{"`sed '/vsn/!d;s/\(.*\)"\(.*\)"\(.*\)/\2/' ../src/ejabberd.app`"}" >> version.tex
|
||||||
@echo -n "% Contributed modules (automatically generated)." > contributed_modules.tex
|
@echo -n "% Contributed modules (automatically generated)." > contributed_modules.tex
|
||||||
|
@ -159,8 +159,12 @@ debug ()
|
|||||||
echo " control+c, control+c"
|
echo " control+c, control+c"
|
||||||
echo ""
|
echo ""
|
||||||
echo "--------------------------------------------------------------------"
|
echo "--------------------------------------------------------------------"
|
||||||
|
echo "To bypass permanently this warning, add to ejabberdctl.cfg the line:"
|
||||||
|
echo " EJABBERD_BYPASS_WARNINGS=true"
|
||||||
echo "Press any key to continue"
|
echo "Press any key to continue"
|
||||||
|
if [ "$EJABBERD_BYPASS_WARNINGS" != "true" ] ; then
|
||||||
read foo
|
read foo
|
||||||
|
fi
|
||||||
echo ""
|
echo ""
|
||||||
$EXEC_CMD "$ERL \
|
$EXEC_CMD "$ERL \
|
||||||
$NAME debug-${ERLANG_NODE} \
|
$NAME debug-${ERLANG_NODE} \
|
||||||
@ -184,8 +188,12 @@ live ()
|
|||||||
echo " q(). and press the Enter key"
|
echo " q(). and press the Enter key"
|
||||||
echo ""
|
echo ""
|
||||||
echo "--------------------------------------------------------------------"
|
echo "--------------------------------------------------------------------"
|
||||||
|
echo "To bypass permanently this warning, add to ejabberdctl.cfg the line:"
|
||||||
|
echo " EJABBERD_BYPASS_WARNINGS=true"
|
||||||
echo "Press any key to continue"
|
echo "Press any key to continue"
|
||||||
|
if [ "$EJABBERD_BYPASS_WARNINGS" != "true" ] ; then
|
||||||
read foo
|
read foo
|
||||||
|
fi
|
||||||
echo ""
|
echo ""
|
||||||
$EXEC_CMD "$ERL \
|
$EXEC_CMD "$ERL \
|
||||||
$NAME $ERLANG_NODE \
|
$NAME $ERLANG_NODE \
|
||||||
|
Loading…
Reference in New Issue
Block a user