mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Make the 'restart' command start Prosody even if it wasn't already running
This commit is contained in:
parent
e74066417c
commit
5ca4d27ae1
1 changed files with 2 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue