From 0c9f32fbb8f4a6a3232ef99255c7e899a2050787 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Tue, 26 Jan 2010 13:47:26 +0000 Subject: [PATCH] Add the irc bot to freenode as well. Originally committed to SVN as r4049. --- devel/tinderbox/buildbot/master/master.cfg | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/devel/tinderbox/buildbot/master/master.cfg b/devel/tinderbox/buildbot/master/master.cfg index d757959eb..9c9123ef8 100644 --- a/devel/tinderbox/buildbot/master/master.cfg +++ b/devel/tinderbox/buildbot/master/master.cfg @@ -805,6 +805,17 @@ c['status'].append(words.IRC( } )) +c['status'].append(words.IRC( + host="irc.freenode.net", + nick="aegibuild", + channels=["#aegisub"], + notify_events={ + 'exception': 1, + 'successToFailure': 1, + 'failureToSuccess': 1 + } +)) + # Realtime client # from buildbot.status import client # c['status'].append(client.PBListener(9988))