diff options
-rwxr-xr-x | prosodyctl | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -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 |