mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Add restart command for KSid and johnny :)
This commit is contained in:
parent
7cecdc9586
commit
9fad88be5d
1 changed files with 13 additions and 0 deletions
13
prosodyctl
13
prosodyctl
|
@ -433,6 +433,19 @@ function commands.stop(arg)
|
|||
return 1;
|
||||
end
|
||||
|
||||
function commands.restart(arg)
|
||||
if arg[1] == "--help" then
|
||||
show_usage([[stop]], [[Stop and start a running Prosody server]]);
|
||||
return 1;
|
||||
end
|
||||
|
||||
local ret = commands.stop(arg);
|
||||
if ret == 0 then
|
||||
ret = commands.start(arg);
|
||||
end
|
||||
return ret;
|
||||
end
|
||||
|
||||
-- ejabberdctl compatibility
|
||||
|
||||
function commands.register(arg)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue