mirror of
https://github.com/progval/irctest.git
synced 2025-04-04 14:29:46 +00:00
Remove use of deprecated config settings on InspIRCd 3+.
This commit is contained in:
committed by
Val Lorentz
parent
15c077d511
commit
af980ed3b6
@ -48,9 +48,7 @@ TEMPLATE_CONFIG = """
|
||||
sendpass="password"
|
||||
>
|
||||
<module name="spanningtree">
|
||||
<module name="services_account">
|
||||
<module name="hidechans"> # Anope errors when missing
|
||||
<module name="svshold"> # Atheme raises a warning when missing
|
||||
<sasl requiressl="no"
|
||||
target="services.example.org">
|
||||
|
||||
@ -71,14 +69,10 @@ TEMPLATE_CONFIG = """
|
||||
<module name="ircv3_servertime">
|
||||
<module name="monitor">
|
||||
<module name="m_muteban"> # for testing mute extbans
|
||||
<module name="namesx"> # For multi-prefix
|
||||
<module name="sasl">
|
||||
<module name="uhnames"> # For userhost-in-names
|
||||
|
||||
# HELP/HELPOP
|
||||
<module name="alias"> # for the HELP alias
|
||||
<module name="{help_module_name}">
|
||||
<include file="examples/{help_module_name}.conf.example">
|
||||
{version_config}
|
||||
|
||||
# Misc:
|
||||
<log method="file" type="*" level="debug" target="/tmp/ircd-{port}.log">
|
||||
@ -90,6 +84,26 @@ TEMPLATE_SSL_CONFIG = """
|
||||
<openssl certfile="{pem_path}" keyfile="{key_path}" dhfile="{dh_path}" hash="sha1">
|
||||
"""
|
||||
|
||||
TEMPLATE_V3_CONFIG = """
|
||||
<module name="namesx"> # For multi-prefix
|
||||
<module name="services_account">
|
||||
<module name="svshold"> # Atheme raises a warning when missing
|
||||
|
||||
# HELP/HELPOP
|
||||
<module name="helpop">
|
||||
<include file="examples/helpop.conf.example">
|
||||
"""
|
||||
|
||||
TEMPLATE_V4_CONFIG = """
|
||||
<module name="account">
|
||||
<module name="multiprefix"> # For multi-prefix
|
||||
<module name="services">
|
||||
|
||||
# HELP/HELPOP
|
||||
<module name="help">
|
||||
<include file="examples/help.conf.example">
|
||||
"""
|
||||
|
||||
|
||||
@functools.lru_cache()
|
||||
def installed_version() -> int:
|
||||
@ -142,9 +156,9 @@ class InspircdController(BaseServerController, DirectoryBasedController):
|
||||
ssl_config = ""
|
||||
|
||||
if installed_version() == 3:
|
||||
help_module_name = "helpop"
|
||||
version_config = TEMPLATE_V3_CONFIG
|
||||
elif installed_version() >= 4:
|
||||
help_module_name = "help"
|
||||
version_config = TEMPLATE_V4_CONFIG
|
||||
else:
|
||||
assert False, f"unexpected version: {installed_version()}"
|
||||
|
||||
@ -157,7 +171,7 @@ class InspircdController(BaseServerController, DirectoryBasedController):
|
||||
services_port=services_port,
|
||||
password_field=password_field,
|
||||
ssl_config=ssl_config,
|
||||
help_module_name=help_module_name,
|
||||
version_config=version_config,
|
||||
)
|
||||
)
|
||||
assert self.directory
|
||||
|
Reference in New Issue
Block a user