mod_console: Added help text for config:reload().
authorWaqas Hussain <waqas20@gmail.com>
Sun, 18 Oct 2009 13:01:13 +0000 (18:01 +0500)
committerWaqas Hussain <waqas20@gmail.com>
Sun, 18 Oct 2009 13:01:13 +0000 (18:01 +0500)
plugins/mod_console.lua

index 760bf5961fc714c02eb10ed184030e9e3abc1ffe..19c22c916b3c5f9863c5da45fe03dddbb47c1e96 100644 (file)
@@ -170,6 +170,7 @@ function commands.help(session, data)
                print [[s2s - Commands to manage sessions between this server and others]]
                print [[module - Commands to load/reload/unload modules/plugins]]
                print [[server - Uptime, version, shutting down, etc.]]
+               print [[config - Reloading the configuration, etc.]]
                print [[console - Help regarding the console itself]]
        elseif section == "c2s" then
                print [[c2s:show(jid) - Show all client sessions with the specified JID (or all if no JID given)]]
@@ -188,6 +189,8 @@ function commands.help(session, data)
                print [[server:version() - Show the server's version number]]
                print [[server:uptime() - Show how long the server has been running]]
                --print [[server:shutdown(reason) - Shut down the server, with an optional reason to be broadcast to all connections]]
+       elseif section == "config" then
+               print [[config:reload() - Reload the server configuration. Modules may need to be reloaded for changes to take effect.]]
        elseif section == "console" then
                print [[Hey! Welcome to Prosody's admin console.]]
                print [[First thing, if you're ever wondering how to get out, simply type 'quit'.]]