mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
prosodyctl: reload: use admin socket to issue reload command, if available
This commit is contained in:
parent
1377333751
commit
f2e87307a4
1 changed files with 11 additions and 7 deletions
18
prosodyctl
18
prosodyctl
|
@ -502,13 +502,17 @@ function commands.reload(arg)
|
|||
return 0;
|
||||
end
|
||||
|
||||
if arg[1] and arg[1]:match"^mod_" then
|
||||
-- TODO reword the usage text, document
|
||||
local shell = require "prosody.util.prosodyctl.shell";
|
||||
arg[1] = arg[1]:match("^mod_(.*)"); -- strip mod_ prefix
|
||||
table.insert(arg, 1, "module");
|
||||
table.insert(arg, 2, "reload");
|
||||
return shell.shell(arg);
|
||||
local shell = require "prosody.util.prosodyctl.shell";
|
||||
if shell.available() then
|
||||
if arg[1] and arg[1]:match"^mod_" then
|
||||
-- TODO reword the usage text, document
|
||||
local shell = require "prosody.util.prosodyctl.shell";
|
||||
arg[1] = arg[1]:match("^mod_(.*)"); -- strip mod_ prefix
|
||||
table.insert(arg, 1, "module");
|
||||
table.insert(arg, 2, "reload");
|
||||
return shell.shell(arg);
|
||||
end
|
||||
return shell.shell({ "config", "reload" });
|
||||
end
|
||||
|
||||
service_command_warning("reload");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue