diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-09-27 23:10:53 +0200 |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-09-27 23:10:53 +0200 |
commit | 9ae1cd8f91aa6b53404e66588679d852d3972bcd (patch) | |
tree | 1edc8a9ac8e36bf8fabeed7b7b3ad933d691438c /tools/np_build_from_sf | |
parent | 983d10e0609175a26675a97129b9e7def18d5f35 (diff) | |
download | monitoring-plugins-9ae1cd8f91aa6b53404e66588679d852d3972bcd.tar.gz |
tools: Remove Drupal/SourceForge scripts
We moved our web site away from Drupal and the snapshots/guidelines away
from SourceForge. The new infrastructure scripts will be maintained in
a separate repository together with the Markdown source of the new web
site.
Diffstat (limited to 'tools/np_build_from_sf')
-rwxr-xr-x | tools/np_build_from_sf | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tools/np_build_from_sf b/tools/np_build_from_sf deleted file mode 100755 index 7ba349a6..00000000 --- a/tools/np_build_from_sf +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | set -xeu | ||
4 | |||
5 | temp=$(mktemp -d) | ||
6 | trap "cd $HOME; rm -rf $temp; exit 1" EXIT | ||
7 | curl -sS http://nagiosplug.sourceforge.net/snapshot/nagios-plugins-HEAD.tar.gz|tar -C "$temp" --strip-components=1 -xzf - | ||
8 | cd $temp | ||
9 | ./configure && make | ||
10 | $HOME/bin/update_man_pages | ||
11 | |||