24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-06 21:37:17 +02:00

check_start must grep processes for nodename last

This commit is contained in:
Christophe Romain 2011-01-17 16:55:00 +01:00
parent d34dab4822
commit 722fdd6bc7

View File

@ -352,7 +352,7 @@ stop_epmd()
check_start()
{
epmd -names | grep -q $NODE && {
ps ux | grep -q $ERLANG_NODE | grep -v grep && {
ps ux | grep -v grep | grep -q $ERLANG_NODE && {
echo "ejabberd is already running."
exit 4
} || {