diff options
-rwxr-xr-x | git/gitolite-hooks/irc-announce | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/git/gitolite-hooks/irc-announce b/git/gitolite-hooks/irc-announce index aa9f91f3..ca8b0059 100755 --- a/git/gitolite-hooks/irc-announce +++ b/git/gitolite-hooks/irc-announce @@ -1,18 +1,13 @@ #! /bin/sh set -euf -config_file="$HOME/.local/krebs/irc-announce" -if test -f "$config_file"; then - . "$config_file" -fi - # XXX when changing IRC_CHANNEL or IRC_SERVER/_PORT, don't forget to update # any relevant gitolite LOCAL_CODE! # CAVEAT we hope that IRC_NICK is unique -IRC_NICK="${IRC_NICK-gl$GL_TID}" -IRC_CHANNEL="${IRC_CHANNEL-#retiolum}" -IRC_SERVER="${IRC_SERVER-ire.retiolum}" -IRC_PORT="${IRC_PORT-6667}" +IRC_NICK="gl$GL_TID" +IRC_CHANNEL='#retiolum' +IRC_SERVER='ire.retiolum' +IRC_PORT=6667 # for privmsg_cat below export IRC_CHANNEL @@ -91,11 +86,6 @@ privmsg_cat() { awk '{ print "PRIVMSG "ENVIRON["IRC_CHANNEL"]" :"$0 }'; } | privmsg_cat \ | cat2 - echo2 "PART $IRC_CHANNEL" - - # TESTME does this sleep help to send all messages? - sleep 5 - echo2 'QUIT :Gone to have lunch' printf |