aboutsummaryrefslogtreecommitdiff
path: root/src/ejabberdctl.template
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2009-12-11 19:42:59 +0000
committerBadlop <badlop@process-one.net>2009-12-11 19:42:59 +0000
commitb9e57a341de8be9212cd5d9bfe8b94aa573042e1 (patch)
treeb6a51d8cd2647e46697b01f53bfd021f9c064fea /src/ejabberdctl.template
parentAdd support for serving a Unique Room Name (thanks to Pablo Polvorin)(EJAB-1121) (diff)
Added to ejabberdctl an experimental variable EJABBERD_BYPASS_WARNINGS
SVN Revision: 2804
Diffstat (limited to '')
-rw-r--r--src/ejabberdctl.template12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/ejabberdctl.template b/src/ejabberdctl.template
index 5ebfb5f6f..755c02bf3 100644
--- a/src/ejabberdctl.template
+++ b/src/ejabberdctl.template
@@ -159,8 +159,12 @@ debug ()
echo " control+c, control+c"
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"
- read foo
+ if [ "$EJABBERD_BYPASS_WARNINGS" != "true" ] ; then
+ read foo
+ fi
echo ""
$EXEC_CMD "$ERL \
$NAME debug-${ERLANG_NODE} \
@@ -184,8 +188,12 @@ live ()
echo " q(). and press the Enter key"
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"
- read foo
+ if [ "$EJABBERD_BYPASS_WARNINGS" != "true" ] ; then
+ read foo
+ fi
echo ""
$EXEC_CMD "$ERL \
$NAME $ERLANG_NODE \