aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-12-11 00:14:34 +0000
committerMatthew Wild <mwild1@gmail.com>2010-12-11 00:14:34 +0000
commit5ca4d27ae1488e11e07b3b797617fc83ce391a30 (patch)
tree35f72028ba71e5f42b4f5f9c445546dafe128994 /prosodyctl
parente74066417c8d4a5dbc429ef82d0e9268f8b4e6fd (diff)
downloadprosody-5ca4d27ae1488e11e07b3b797617fc83ce391a30.tar.gz
prosody-5ca4d27ae1488e11e07b3b797617fc83ce391a30.zip
prosodyctl: Make the 'restart' command start Prosody even if it wasn't already running
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl7
1 files changed, 2 insertions, 5 deletions
diff --git a/prosodyctl b/prosodyctl
index 8fa12807..94816c56 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -509,11 +509,8 @@ function commands.restart(arg)
return 1;
end
- local ret = commands.stop(arg);
- if ret == 0 then
- ret = commands.start(arg);
- end
- return ret;
+ commands.stop(arg);
+ return commands.start(arg);
end
-- ejabberdctl compatibility