mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Added the 'local_plugins' command function, which prints back a list of locally available plugins
This commit is contained in:
parent
83ca8aef54
commit
cf25afe5b1
1 changed files with 16 additions and 1 deletions
17
prosodyctl
17
prosodyctl
|
@ -87,10 +87,25 @@ local command = table.remove(arg, 1);
|
|||
|
||||
function commands.test()
|
||||
show_message [[Well, hello there!]]
|
||||
--show_message [[Enabled Plugins: ], modulemanager.get_modules_for_host()]
|
||||
show_warning("Trying to peek at the plugin directory: '%s'", modulemanager.get_modules_for_host())
|
||||
end
|
||||
|
||||
function commands.local_plugins()
|
||||
local directory = "./plugins"
|
||||
local i, t, popen = 0, {}, io.popen
|
||||
local pfile = popen('ls -a "'..directory..'"')
|
||||
for filename in pfile:lines() do
|
||||
if filename == "." or filename == ".." then
|
||||
i = i + 1
|
||||
else
|
||||
i = i + 1
|
||||
t[i] = filename
|
||||
show_warning("%s", t[i])
|
||||
end
|
||||
end
|
||||
pfile:close()
|
||||
end
|
||||
|
||||
function commands.adduser(arg)
|
||||
if not arg[1] or arg[1] == "--help" then
|
||||
show_usage([[adduser JID]], [[Create the specified user account in Prosody]]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue