mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
prosodyctl: Add lua_paths command to print the LUA_PATH and LUA_CPATH used
This can be useful to run scripts and stuff with access to the same Lua paths as Prosody uses.
This commit is contained in:
parent
d2b632dffc
commit
26eeda9ed6
1 changed files with 9 additions and 0 deletions
|
@ -486,6 +486,15 @@ function commands.version(arg)
|
|||
print("Prosody "..(prosody.version or "(unknown version)"));
|
||||
end
|
||||
|
||||
function commands.lua_paths()
|
||||
local function shell_escape(s)
|
||||
return "'" .. tostring(s):gsub("'",[['\'']]) .. "'";
|
||||
end
|
||||
|
||||
print("LUA_PATH="..shell_escape(package.path));
|
||||
print("LUA_CPATH="..shell_escape(package.cpath));
|
||||
end
|
||||
|
||||
function commands.reload(arg)
|
||||
local opts = parse_args(arg, only_help);
|
||||
if opts.help then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue