1 |
MODULE <option> [module name] |
2 |
|
3 |
<option> can be one of the following: |
4 |
LIST - List the modules that are currently loaded into the |
5 |
ircd, along with their address and version. |
6 |
When a match string is provided, LIST only prints |
7 |
modules with names matching the match string. |
8 |
|
9 |
LOAD - Loads a module into the ircd. |
10 |
The optional path can be an absolute path |
11 |
from / or from the IRCD_PREFIX |
12 |
(ie modules/autoload/m_users.la) |
13 |
|
14 |
UNLOAD - Unload a module from the ircd. |
15 |
Use just the module name, the path is not needed. |
16 |
When a module is unloaded, all commands associated |
17 |
with it are unloaded as well. |
18 |
|
19 |
RELOAD - Reloads all modules. |
20 |
All modules are unloaded, then those in modules/autoload |
21 |
are loaded. If "*" has been specified as module name, |
22 |
all modules will be reloaded. |
23 |
|
24 |
- Requires Oper Priv: module |