diff options
author | João Duarte <jvsDuarte08@gmail.com> | 2019-07-24 11:29:55 -0700 |
---|---|---|
committer | João Duarte <jvsDuarte08@gmail.com> | 2019-07-24 11:29:55 -0700 |
commit | d93db0b931b21e041baf0badb7b5224ebced7a34 (patch) | |
tree | 2ad424c3cd09f9743891471ab4ed5524f4365306 /prosodyctl | |
parent | 843f28994734b5791eb1f011dd60de87e2b2fa7a (diff) | |
download | prosody-d93db0b931b21e041baf0badb7b5224ebced7a34.tar.gz prosody-d93db0b931b21e041baf0badb7b5224ebced7a34.zip |
prosodyctl: Removed the local_plugins command
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 25 |
1 files changed, 2 insertions, 23 deletions
@@ -160,27 +160,6 @@ function commands.enabled_plugins(arg) end end -function commands.local_plugins(arg) - if arg[1] == "--help" then - show_usage([[local_plugins]], [[Shows plugins currently available for prosody, locally]]); - return 1; - end - 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() - return 0; -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]]); @@ -1446,8 +1425,8 @@ local command_runner = async.runner(function () print("Where COMMAND may be one of:\n"); local hidden_commands = require "util.set".new{ "register", "unregister", "addplugin" }; - local commands_order = { "install", "remove", "list", "enabled_plugins", "local_plugins","adduser", "passwd", "deluser", "start", "stop", "restart", - "reload", "about", "list" }; + local commands_order = { "install", "remove", "list", "enabled_plugins", "adduser", "passwd", "deluser", "start", "stop", "restart", "reload", + "about", "list" }; local done = {}; |