diff options
author | Vincent Ambo <mail@tazj.in> | 2021-05-22T20·55+0200 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-05-22T21·37+0000 |
commit | 780bb86eff397c51d5f48aec7f2520fa35faeb53 (patch) | |
tree | 816e02622941c2580ff1af3422fc6b9c9b748fbc /fun/clbot/clbot.go | |
parent | 1fa76e77195816861a22d2e6d4e637fdca82a172 (diff) |
chore: Replace Freenode mentions with HackInt r/2609
This doesn't replace all of them in the repo, but at least the ones that are relevant to our move. Change-Id: I842e7594b4c16af30d880272417874f6b29afd22 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3134 Tested-by: BuildkiteCI Reviewed-by: lukegb <lukegb@tvl.fyi> Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'fun/clbot/clbot.go')
-rw-r--r-- | fun/clbot/clbot.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fun/clbot/clbot.go b/fun/clbot/clbot.go index 914fa03705be..a97d28e0f73d 100644 --- a/fun/clbot/clbot.go +++ b/fun/clbot/clbot.go @@ -28,12 +28,12 @@ var ( gerritAuthUsername = flag.String("gerrit_ssh_auth_username", "", "Gerrit SSH username") gerritAuthKeyPath = flag.String("gerrit_ssh_auth_key", "", "Gerrit SSH private key path") - ircServer = flag.String("irc_server", "chat.freenode.net:7000", "IRC server to connect to") + ircServer = flag.String("irc_server", "irc.hackint.org:6697", "IRC server to connect to") ircTls = flag.Bool("irc_tls", false, "Does the server connection need TLS?") ircNick = flag.String("irc_nick", "clbot", "Nick to use when connecting to IRC") ircUser = flag.String("irc_user", "clbot", "User string to use for IRC") ircName = flag.String("irc_name", "clbot", "Name string to use for IRC") - ircChannel = flag.String("irc_channel", "##tvl", "Channel to send messages to") + ircChannel = flag.String("irc_channel", "#tvl", "Channel to send messages to") ircPassword = flag.String("irc_pass", "", "Password to use for IRC") ircSendLimit = flag.Duration("irc_send_limit", 100*time.Millisecond, "Delay between messages") ircSendBurst = flag.Int("irc_send_burst", 10, "Number of messages which can be sent in a burst") |