Skip to content

Commit 07a04d0

Browse files
committed
lowercase the enablement vars
this allows the toml file to validate correctly
1 parent 2e13f1f commit 07a04d0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

roles/matterbridge/templates/matterbridge.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ RemoteNickFormat="[{PROTOCOL}] <{NICK}> "
252252

253253
[[gateway]]
254254
name="gateway_rit"
255-
enable={{ matterbridge_config.rit.enabled }}
255+
enable={{ matterbridge_config.rit.enabled|lower }}
256256

257257
[[gateway.inout]]
258258
account="irc.{{ default_irc_network_name }}"
@@ -264,7 +264,7 @@ enable={{ matterbridge_config.rit.enabled }}
264264

265265
[[gateway]]
266266
name="gateway_rit_foss_infra"
267-
enable={{ matterbridge_config.rit_foss_infra.enabled }}
267+
enable={{ matterbridge_config.rit_foss_infra.enabled|lower }}
268268

269269
[[gateway.inout]]
270270
account="irc.{{ default_irc_network_name }}"
@@ -284,7 +284,7 @@ enable={{ matterbridge_config.rit_foss_infra.enabled }}
284284

285285
[[gateway]]
286286
name="gateway_rit_foss"
287-
enable={{ matterbridge_config.rit_foss.enabled }}
287+
enable={{ matterbridge_config.rit_foss.enabled|lower }}
288288

289289
[[gateway.inout]]
290290
account="irc.{{ default_irc_network_name }}"
@@ -309,7 +309,7 @@ enable={{ matterbridge_config.rit_foss.enabled }}
309309
# this is a bridge between the #foss channels in many different RIT discord servers
310310
[[gateway]]
311311
name="gateway_rit_foss_discord_bridge"
312-
enable={{ matterbridge_config.rit_foss_discord_bridge.enabled }}
312+
enable={{ matterbridge_config.rit_foss_discord_bridge.enabled|lower }}
313313

314314
[[gateway.inout]]
315315
account="discord.{{ matterbridge_networks.fossrit_discord.network_name }}"
@@ -330,7 +330,7 @@ enable={{ matterbridge_config.rit_foss_discord_bridge.enabled }}
330330

331331
[[gateway]]
332332
name="gateway_rit_lug"
333-
enable={{ matterbridge_config.rit_lug.enabled }}
333+
enable={{ matterbridge_config.rit_lug.enabled|lower }}
334334

335335
[[gateway.inout]]
336336
account="irc.{{ default_irc_network_name }}"
@@ -342,7 +342,7 @@ enable={{ matterbridge_config.rit_lug.enabled }}
342342

343343
[[gateway]]
344344
name="gateway_rit_lug_projects"
345-
enable={{ matterbridge_config.rit_lug_projects.enabled }}
345+
enable={{ matterbridge_config.rit_lug_projects.enabled|lower }}
346346

347347
[[gateway.inout]]
348348
account="irc.{{ default_irc_network_name }}"
@@ -354,7 +354,7 @@ enable={{ matterbridge_config.rit_lug_projects.enabled }}
354354

355355
[[gateway]]
356356
name="gateway_rit_lug_sysadmin"
357-
enable={{ matterbridge_config.rit_lug_sysadmin.enabled }}
357+
enable={{ matterbridge_config.rit_lug_sysadmin.enabled|lower }}
358358

359359
[[gateway.inout]]
360360
account="irc.{{ default_irc_network_name }}"
@@ -366,7 +366,7 @@ enable={{ matterbridge_config.rit_lug_sysadmin.enabled }}
366366

367367
[[gateway]]
368368
name="gateway_rit_lug_teleirc"
369-
enable={{ matterbridge_config.rit_lug_teleirc.enabled }}
369+
enable={{ matterbridge_config.rit_lug_teleirc.enabled|lower }}
370370

371371
[[gateway.inout]]
372372
account="irc.{{ default_irc_network_name }}"
@@ -378,7 +378,7 @@ enable={{ matterbridge_config.rit_lug_teleirc.enabled }}
378378

379379
[[gateway]]
380380
name="gateway_rit_python"
381-
enable={{ matterbridge_config.rit_python.enabled }}
381+
enable={{ matterbridge_config.rit_python.enabled|lower }}
382382

383383
[[gateway.inout]]
384384
account="irc.{{ default_irc_network_name }}"
@@ -390,7 +390,7 @@ enable={{ matterbridge_config.rit_python.enabled }}
390390

391391
[[gateway]]
392392
name="gateway_rit_tigeros"
393-
enable={{ matterbridge_config.rit_tigeros.enabled }}
393+
enable={{ matterbridge_config.rit_tigeros.enabled|lower }}
394394

395395
[[gateway.inout]]
396396
account="irc.{{ default_irc_network_name }}"

0 commit comments

Comments
 (0)