summaryrefslogtreecommitdiffstats
path: root/tools/git-post-receive-hook
diff options
context:
space:
mode:
authorHolger Weiss <holger@zedat.fu-berlin.de>2009-12-06 00:23:41 (GMT)
committerHolger Weiss <holger@zedat.fu-berlin.de>2009-12-06 00:23:41 (GMT)
commit78fc8f4909750407585990aa10522d9510a69804 (patch)
treed57a0901bd1e5122bcde353a935c6e80b9530d69 /tools/git-post-receive-hook
parent96a23a4c117a9c2665ca09e5964eacf028dbcdcf (diff)
downloadmonitoring-plugins-78fc8f4909750407585990aa10522d9510a69804.tar.gz
Enable CIA's commit notifications
We now use CIA's service to send commit notifications to IRC. They are currently sent to the #Nagios-Devel channel on Freenode. See: http://cia.vc/stats/project/nagiosplug/ http://cia.vc/account/bots/15699/
Diffstat (limited to 'tools/git-post-receive-hook')
-rwxr-xr-xtools/git-post-receive-hook2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/git-post-receive-hook b/tools/git-post-receive-hook
index 70d259e..fd1f869 100755
--- a/tools/git-post-receive-hook
+++ b/tools/git-post-receive-hook
@@ -4,11 +4,13 @@ prefix="${0%/*}/notifications" # $GIT_DIR/hooks/notifications
4recipient='Nagios Plugin Commits <nagiosplug-checkins@lists.sourceforge.net>' 4recipient='Nagios Plugin Commits <nagiosplug-checkins@lists.sourceforge.net>'
5maxcommits=100 5maxcommits=100
6maxdiffsize=$((300 * 1024)) 6maxdiffsize=$((300 * 1024))
7project='nagiosplug'
7gitweburl='http://nagiosplug.git.sf.net/git/gitweb.cgi?p=nagiosplug' 8gitweburl='http://nagiosplug.git.sf.net/git/gitweb.cgi?p=nagiosplug'
8gitnotify="$prefix/git-notify.pl" 9gitnotify="$prefix/git-notify.pl"
9statefile="$prefix/git-notify.dat" 10statefile="$prefix/git-notify.dat"
10 11
11exec "$gitnotify" \ 12exec "$gitnotify" \
13 -c "$project" \
12 -m "$recipient" \ 14 -m "$recipient" \
13 -n "$maxcommits" \ 15 -n "$maxcommits" \
14 -s "$maxdiffsize" \ 16 -s "$maxdiffsize" \