prosodyctl: reload: use admin socket to issue reload command, if available

This commit is contained in:
Matthew Wild 2025-02-06 14:24:16 +00:00
parent 1377333751
commit f2e87307a4

View file

@ -502,6 +502,8 @@ function commands.reload(arg)
return 0;
end
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";
@ -510,6 +512,8 @@ function commands.reload(arg)
table.insert(arg, 2, "reload");
return shell.shell(arg);
end
return shell.shell({ "config", "reload" });
end
service_command_warning("reload");