Files
Kapisi/roles/IRC/templates/inspircd/opers.conf.j2
T

13 lines
605 B
Django/Jinja
Raw Normal View History

# We are not yet deeply using the class system -- only NetAdmins should be managing the network. Most management will be through services.
<class name="NetAdmin" commands="*" usermodes="*" chanmodes="*" privs="*">
2022-12-18 22:18:43 -06:00
<type
name="NetAdmin"
classes="NetAdmin"
2022-12-18 22:18:43 -06:00
vhost="{{ external_domain }}"
modes="+s +aAcCjkKlLoOqQr">
# Operators are tracked in the vault.
2022-12-18 22:18:43 -06:00
{% for oper in secrets['IRC']['opers'] %}
2025-10-21 13:52:25 -05:00
<oper name="{{ oper }}" password="{{ secrets['IRC']['opers'][oper] }}" hash="sha256" host="*@127.0.0.1 *@10.0.1.* *@localhost *@{{ external_domain }}" type="NetAdmin" maxchans="60">
2022-12-18 22:18:43 -06:00
{% endfor %}