mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.prosodyctl.shell: Export function to check for availability of admin socket
This commit is contained in:
parent
ba53fa2e21
commit
1377333751
1 changed files with 8 additions and 0 deletions
|
@ -64,6 +64,13 @@ local function printbanner()
|
|||
print("https://prosody.im/doc/console\n");
|
||||
end
|
||||
|
||||
local function check()
|
||||
local lfs = require "lfs";
|
||||
local socket_path = path.resolve_relative_path(prosody.paths.data, config.get("*", "admin_socket") or "prosody.sock");
|
||||
local state = lfs.attributes(socket_path, "mode");
|
||||
return state == "socket";
|
||||
end
|
||||
|
||||
local function start(arg) --luacheck: ignore 212/arg
|
||||
local client = adminstream.client();
|
||||
local opts, err, where = parse_args(arg);
|
||||
|
@ -180,4 +187,5 @@ end
|
|||
|
||||
return {
|
||||
shell = start;
|
||||
available = check;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue