about summary refs log tree commit diff
path: root/ops/machines/whitby/default.nix
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-05-23T20·30+0200
committertazjin <mail@tazj.in>2021-05-23T20·34+0000
commit4b584e5259a154f645f3bdb18ab4aebe07c1849f (patch)
tree60dc5ea271a5791b50ea77cdb304f2472828631b /ops/machines/whitby/default.nix
parent224c9ca0bb3aa8a36b5c18efd5f9a5a36d83226c (diff)
fix(whitby): Fix irccat configuration for incorrectly named option r/2619
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 <sternenseemann@systemli.org>
Reviewed-by: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
Diffstat (limited to 'ops/machines/whitby/default.nix')
-rw-r--r--ops/machines/whitby/default.nix4
1 files changed, 3 insertions, 1 deletions
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"
           ];