From 4b584e5259a154f645f3bdb18ab4aebe07c1849f Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 23 May 2021 22:30:23 +0200 Subject: fix(whitby): Fix irccat configuration for incorrectly named option irccat is passing the realname option as the ident of the user, which doesn't match what is in ZNC. It hasn't seen any upstream commits in a long time, so I'm just leaving this as is and fixing it locally in our config. Change-Id: I3bf865f37b8df9c1cd891a94245ca3fad376bbe1 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3150 Reviewed-by: sterni Reviewed-by: grfn Tested-by: BuildkiteCI --- ops/machines/whitby/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ops/machines/whitby') diff --git a/ops/machines/whitby/default.nix b/ops/machines/whitby/default.nix index c4a832b8f6..bb8c26919e 100644 --- a/ops/machines/whitby/default.nix +++ b/ops/machines/whitby/default.nix @@ -301,7 +301,9 @@ in { server = "localhost:${toString config.services.znc.config.Listener.l.Port}"; tls = false; nick = "tvlbot"; - realname = "TVL Bot"; + # Note: irccat means 'ident' where it says 'realname', so + # this is critical for connecting to ZNC. + realname = "tvlbot"; channels = [ "#tvl" ]; -- cgit 1.4.1