aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorJoão Duarte <jvsDuarte08@gmail.com>2019-06-26 16:46:51 +0100
committerJoão Duarte <jvsDuarte08@gmail.com>2019-06-26 16:46:51 +0100
commitfce54a8010c647e28274b54e169f92c814855649 (patch)
treeb1a0da68c4619ae52cf116dab745e5a657652c3d /prosodyctl
parent79191ed8f28bc8a26b782f3ef3e28459029c9f76 (diff)
downloadprosody-fce54a8010c647e28274b54e169f92c814855649.tar.gz
prosody-fce54a8010c647e28274b54e169f92c814855649.zip
prosodyctl: Complemented my functions with return calls, when possible
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl6
1 files changed, 5 insertions, 1 deletions
diff --git a/prosodyctl b/prosodyctl
index 2c786b95..8cf90048 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -10,7 +10,6 @@
-- prosodyctl - command-line controller for Prosody XMPP server
-- Will be modified by configure script if run --
-
CFG_SOURCEDIR=CFG_SOURCEDIR or os.getenv("PROSODY_SRCDIR");
CFG_CONFIGDIR=CFG_CONFIGDIR or os.getenv("PROSODY_CFGDIR");
CFG_PLUGINDIR=CFG_PLUGINDIR or os.getenv("PROSODY_PLUGINDIR");
@@ -93,17 +92,21 @@ function commands.list(arg)
local dir = arg[1]:match("=(.+)$")
-- These extra double brackets allow us to correctly process names with spaces
os.execute("luarocks list --tree=".."'"..dir.."'")
+ return 0;
else
os.execute("luarocks list --tree="..prosody.paths.data.."/rocks")
+ return 0;
end
end
function commands.admin_add(arg)
prosodyctl.admin_operation("add ", arg)
+ return 0;
end
function commands.admin_remove(arg)
prosodyctl.admin_operation("remove ", arg)
+ return 0;
end
function commands.enabled_plugins()
@@ -126,6 +129,7 @@ function commands.local_plugins()
end
end
pfile:close()
+ return 0
end
function commands.adduser(arg)