]> git.somenet.org - root/pub/somesible.git/blob - roles/server/irc-services/files/default/global.conf
[roles/util/letsencrypt-cert] request letsencrypt-cert helper role
[root/pub/somesible.git] / roles / server / irc-services / files / default / global.conf
1 #
2 ################################################
3 ### Managed by someone's ansible provisioner ###
4 ################################################
5 # Part of: https://git.somenet.org/root/pub/somesible.git
6 # 2017-2024 by someone <someone@somenet.org>
7 #
8
9 /*
10  * First, create the service.
11  * Note that an easy way to rename this service is to define{} the client name to something else.
12  */
13 service
14 {
15         nick = "Global"
16         user = "global"
17         host = "services.host"
18         gecos = "Global Noticer"
19         #modes = "+o"
20 }
21
22 /*
23  * Core Global module.
24  *
25  * Provides essential functionality for Global.
26  */
27 module
28 {
29         name = "global"
30         client = "Global"
31         globaloncycledown = "Services are restarting, they will be back shortly - please be good while we're gone"
32         globaloncycleup = "Services are now back online - have a nice day"
33         #anonymousglobal = yes
34 }
35
36 /*
37  * Core Global commands.
38  *
39  * In Anope modules can provide (multiple) commands, each of which has a unique command name. Once these modules
40  * are loaded you can then configure the commands to be added to any client you like with any name you like.
41  *
42  * Additionally, you may provide a permission name that must be in the opertype of users executing the command.
43  *
44  * Sane defaults are provided below that do not need to be edited unless you wish to change the default behavior.
45  */
46
47 /* Give it a help command. */
48 command { service = "Global"; name = "HELP"; command = "generic/help"; }
49
50 /*
51  * gl_global
52  *
53  * Provides the command global/global.
54  *
55  * Used for sending a message to every online user.
56  */
57 module { name = "gl_global" }
58 command { service = "OperServ"; name = "GLOBAL"; command = "global/global"; permission = "operserv/global"; }
59 command { service = "Global"; name = "GLOBAL"; command = "global/global"; permission = "global/global"; }