summaryrefslogtreecommitdiffstats
path: root/libexec/post-receive.d/04-build-web-site
diff options
context:
space:
mode:
Diffstat (limited to 'libexec/post-receive.d/04-build-web-site')
-rwxr-xr-xlibexec/post-receive.d/04-build-web-site33
1 files changed, 33 insertions, 0 deletions
diff --git a/libexec/post-receive.d/04-build-web-site b/libexec/post-receive.d/04-build-web-site
new file mode 100755
index 0000000..68a439c
--- /dev/null
+++ b/libexec/post-receive.d/04-build-web-site
@@ -0,0 +1,33 @@
1#!/bin/sh
2#
3# Copyright (c) 2013 Nagios Plugins Development Team
4#
5# Originally written by Holger Weiss <holger@zedat.fu-berlin.de>.
6#
7# This file is free software; the Nagios Plugins Development Team gives
8# unlimited permission to copy and/or distribute it, with or without
9# modifications, as long as this notice is preserved.
10#
11# This program is distributed in the hope that it will be useful, but WITHOUT
12# ANY WARRANTY, to the extent permitted by law; without even the implied
13# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14
15set -e
16set -u
17
18prefix='/home/plugins'
19repository=${PWD##*/}
20web_repositories='nagios-plugins.git site.git'
21web_branch='master'
22
23for web_repository in $web_repositories
24do
25 if [ "$repository" = "$web_repository" ]
26 then
27 while read old new ref
28 do
29 test "${ref#refs/heads/}" = "$web_branch" \
30 && exec "$prefix/bin/build-web-site" >'/dev/null'
31 done
32 fi
33done