prosodyctl: Make the 'restart' command start Prosody even if it wasn't already running

This commit is contained in:
Matthew Wild 2010-12-11 00:14:34 +00:00
parent e74066417c
commit 5ca4d27ae1

View file

@ -509,11 +509,8 @@ function commands.restart(arg)
return 1;
end
local ret = commands.stop(arg);
if ret == 0 then
ret = commands.start(arg);
end
return ret;
commands.stop(arg);
return commands.start(arg);
end
-- ejabberdctl compatibility