Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Romain <christophe.romain@process-one.net>2016-06-17 18:09:45 +0300
committerChristophe Romain <christophe.romain@process-one.net>2016-06-17 18:09:45 +0300
commit6f2b0179e7a135794d7c4f893fcf723554361142 (patch)
tree51c273d88f17e5fd5d037305251027e86352c975 /ejabberdctl.template
parent8583958268936d107769d4ced5ce451f8ee9bf3e (diff)
Give more time to stop and kill epmd (#882)
Diffstat (limited to 'ejabberdctl.template')
-rwxr-xr-xejabberdctl.template2
1 files changed, 1 insertions, 1 deletions
diff --git a/ejabberdctl.template b/ejabberdctl.template
index 7a3b589b9..a5dc665a7 100755
--- a/ejabberdctl.template
+++ b/ejabberdctl.template
@@ -441,6 +441,6 @@ case "${ARGS[0]}" in
'ping'*) ping ${ARGS[1]};;
'etop') etop;;
'started') wait_for_status 0 30 2;; # wait 30x2s before timeout
- 'stopped') wait_for_status 3 15 2 && stop_epmd;; # wait 15x2s before timeout
+ 'stopped') wait_for_status 3 30 2 && stop_epmd;; # wait 30x2s before timeout
*) ctl "${ARGS[@]}";;
esac