Skip to content

Commit 0c91cf1

Browse files
authored
Update for the latest Anope. (#316)
1 parent ccdacd9 commit 0c91cf1

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

.github/workflows/test-stable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@v4
2626
with:
2727
path: anope
28-
ref: 2.0.14
28+
ref: 2.0.18
2929
repository: anope/anope
3030
- name: Build Anope
3131
run: |
@@ -65,7 +65,7 @@ jobs:
6565
uses: actions/checkout@v4
6666
with:
6767
path: anope
68-
ref: 2.0.14
68+
ref: 2.0.18
6969
repository: anope/anope
7070
- name: Build Anope 2.0
7171
run: |

irctest/controllers/anope_services.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
maxpasslen = 1000
5353
minpasslen = 1
5454
}}
55-
command {{ service = "NickServ"; name = "HELP"; command = "generic/help"; }}
5655
5756
module {{
5857
name = "ns_register"
@@ -63,12 +62,10 @@
6362
options {{
6463
casemap = "ascii"
6564
readtimeout = 5s
66-
warningtimeout = 4h
6765
}}
6866
69-
module {{ name = "ns_sasl" }} # since 2.1.13
70-
module {{ name = "sasl" }} # 2.1.2 to 2.1.12
71-
module {{ name = "m_sasl" }} # 2.0 to 2.1.1
67+
module {{ name = "ns_sasl" }} # 2.1
68+
module {{ name = "m_sasl" }} # 2.0
7269
7370
module {{ name = "enc_sha2" }} # 2.1
7471
module {{ name = "enc_sha256" }} # 2.0
@@ -148,6 +145,7 @@ def run(self, protocol: str, server_hostname: str, server_port: int) -> None:
148145
[
149146
"anope",
150147
"--config=services.conf", # can't be an absolute path in 2.0
148+
"--nodb", # don't write a database
151149
"--nofork", # don't fork
152150
"--nopid", # don't write a pid
153151
*extra_args,

workflows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -358,8 +358,8 @@ software:
358358
separate_build_job: true
359359
path: anope
360360
refs:
361-
stable: "2.0.14"
362-
release: "2.1.1"
361+
stable: "2.0.18"
362+
release: "2.1.17"
363363
devel: "2.1"
364364
devel_release: "2.0"
365365
build_script: |
@@ -375,7 +375,7 @@ software:
375375
separate_build_job: true
376376
path: anope
377377
refs:
378-
stable: "2.0.14"
378+
stable: "2.0.18"
379379
release: null
380380
devel: "2.0"
381381
devel_release: null

0 commit comments

Comments
 (0)