mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
Move warnings inside check for , use variable for path
This commit is contained in:
parent
07501f8085
commit
86a6667122
@ -184,6 +184,7 @@ start()
|
|||||||
# attach to server
|
# attach to server
|
||||||
debug()
|
debug()
|
||||||
{
|
{
|
||||||
|
if [ "$EJABBERD_BYPASS_WARNINGS" != "true" ] ; then
|
||||||
echo "--------------------------------------------------------------------"
|
echo "--------------------------------------------------------------------"
|
||||||
echo ""
|
echo ""
|
||||||
echo "IMPORTANT: we will attempt to attach an INTERACTIVE shell"
|
echo "IMPORTANT: we will attempt to attach an INTERACTIVE shell"
|
||||||
@ -197,10 +198,10 @@ 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 "To bypass permanently this warning, add to $EJABBERDCTL_CONFIG_PATH the line:"
|
||||||
echo " EJABBERD_BYPASS_WARNINGS=true"
|
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
|
fi
|
||||||
echo ""
|
echo ""
|
||||||
@ -217,6 +218,7 @@ debug()
|
|||||||
live()
|
live()
|
||||||
{
|
{
|
||||||
check_start
|
check_start
|
||||||
|
if [ "$EJABBERD_BYPASS_WARNINGS" != "true" ] ; then
|
||||||
echo "--------------------------------------------------------------------"
|
echo "--------------------------------------------------------------------"
|
||||||
echo ""
|
echo ""
|
||||||
echo "IMPORTANT: ejabberd is going to start in LIVE (interactive) mode."
|
echo "IMPORTANT: ejabberd is going to start in LIVE (interactive) mode."
|
||||||
@ -229,10 +231,10 @@ 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 "To bypass permanently this warning, add to $EJABBERDCTL_CONFIG_PATH the line:"
|
||||||
echo " EJABBERD_BYPASS_WARNINGS=true"
|
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
|
fi
|
||||||
echo ""
|
echo ""
|
||||||
|
Loading…
Reference in New Issue
Block a user