mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
prosodyctl: Add experimental way to reload specific modules directly
Mostly thinking out loud about how various actions may use the shell This enables the following sequence of commands: prosodyctl install mod_example prosodyctl reload mod_example which is simpler than prosodyctl shell module reload example
This commit is contained in:
parent
c468bd12c9
commit
a7bbeac47e
1 changed files with 9 additions and 0 deletions
|
@ -565,6 +565,15 @@ 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);
|
||||
end
|
||||
|
||||
service_command_warning("reload");
|
||||
|
||||
if not prosodyctl.isrunning() then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue