summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMonitoring Plugins Development Team <devel@monitoring-plugins.org>2014-01-18 08:40:24 (GMT)
committerThomas Guyot-Sionnest <dermoth@aei.ca>2014-01-19 19:18:47 (GMT)
commit63734f52ab1b4b2c17545b26fc41016d6bbd80bd (patch)
treedcd7aa3fd9a2a6a69a47d3a7e6a18d034426087a /tools
parent9db763963f3993f923619a2147e4313b09f12134 (diff)
downloadmonitoring-plugins-63734f52ab1b4b2c17545b26fc41016d6bbd80bd.tar.gz
Project rename initial commit.
This is an initial take at renaming the project to Monitoring Plugins. It's not expected to be fully complete, and it is expected to break things (The perl module for instance). More testing will be required before this goes mainline.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/distclean2
-rwxr-xr-xtools/generate-change-log4
-rwxr-xr-xtools/git-notify2
-rwxr-xr-xtools/git-post-receive-hook6
-rwxr-xr-xtools/tango4
-rwxr-xr-xtools/tinderbox_build6
6 files changed, 12 insertions, 12 deletions
diff --git a/tools/distclean b/tools/distclean
index f4ec20b..06d633e 100755
--- a/tools/distclean
+++ b/tools/distclean
@@ -6,7 +6,7 @@
6# Please run this script from the top-level directory. 6# Please run this script from the top-level directory.
7 7
8if [ ! -f tools/distclean ]; then 8if [ ! -f tools/distclean ]; then
9 echo "Please run this script from the top-level directory of Nagios-plugins." 9 echo "Please run this script from the top-level directory of Monitoring-plugins."
10 exit 1 10 exit 1
11fi 11fi
12 12
diff --git a/tools/generate-change-log b/tools/generate-change-log
index 03321fd..3a6b38e 100755
--- a/tools/generate-change-log
+++ b/tools/generate-change-log
@@ -1,10 +1,10 @@
1#!/usr/bin/env perl 1#!/usr/bin/env perl
2# 2#
3# Copyright (c) 2013 Nagios Plugins Development Team 3# Copyright (c) 2013 Monitoring Plugins Development Team
4# 4#
5# Originally written by Holger Weiss <holger@zedat.fu-berlin.de>. 5# Originally written by Holger Weiss <holger@zedat.fu-berlin.de>.
6# 6#
7# This file is free software; the Nagios Plugins Development Team gives 7# This file is free software; the Monitoring Plugins Development Team gives
8# unlimited permission to copy and/or distribute it, with or without 8# unlimited permission to copy and/or distribute it, with or without
9# modifications, as long as this notice is preserved. 9# modifications, as long as this notice is preserved.
10# 10#
diff --git a/tools/git-notify b/tools/git-notify
index 8514296..ff59d39 100755
--- a/tools/git-notify
+++ b/tools/git-notify
@@ -3,7 +3,7 @@
3# Tool to send git commit notifications 3# Tool to send git commit notifications
4# 4#
5# Copyright 2005 Alexandre Julliard 5# Copyright 2005 Alexandre Julliard
6# Copyright 2009 Nagios Plugins Development Team 6# Copyright 2009 Monitoring Plugins Development Team
7# 7#
8# This program is free software; you can redistribute it and/or 8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as 9# modify it under the terms of the GNU General Public License as
diff --git a/tools/git-post-receive-hook b/tools/git-post-receive-hook
index db9ad9e..c822a63 100755
--- a/tools/git-post-receive-hook
+++ b/tools/git-post-receive-hook
@@ -1,11 +1,11 @@
1#!/bin/sh 1#!/bin/sh
2 2
3prefix="${0%/*}/notifications" # $GIT_DIR/hooks/notifications 3prefix="${0%/*}/notifications" # $GIT_DIR/hooks/notifications
4recipient='Nagios Plugin Commits <nagiosplug-checkins@lists.sourceforge.net>' 4recipient='Monitoring Plugins Commits <commits@monitoring-plugins.org>'
5maxcommits=100 5maxcommits=100
6maxdiffsize=$((300 * 1024)) 6maxdiffsize=$((300 * 1024))
7project='nagiosplug' 7project='monitoring-plugins'
8gitweburl='http://nagiosplug.git.sf.net/git/gitweb.cgi?p=nagiosplug' 8gitweburl='https://github.com/monitoring-plugins/monitoring-plugins'
9gitnotify="$prefix/git-notify.pl" 9gitnotify="$prefix/git-notify.pl"
10statefile="$prefix/git-notify.dat" 10statefile="$prefix/git-notify.dat"
11 11
diff --git a/tools/tango b/tools/tango
index 7f418d7..0d07b1f 100755
--- a/tools/tango
+++ b/tools/tango
@@ -14,9 +14,9 @@ my $REVISION = '$Revision$ ';
14$REVISION =~ s/^\$Revision: //; 14$REVISION =~ s/^\$Revision: //;
15$REVISION =~ s/ \$ $//; 15$REVISION =~ s/ \$ $//;
16 16
17my $PACKAGE = 'Nagios Plugins'; 17my $PACKAGE = 'Monitoring Plugins';
18my $RELEASE = '1.3'; 18my $RELEASE = '1.3';
19my $WARRANTY = "The nagios plugins come with ABSOLUTELY NO WARRANTY. You may redistribute\ncopies of the plugins under the terms of the GNU General Public License.\nFor more information about these matters, see the file named COPYING.\n"; 19my $WARRANTY = "The monitoring plugins come with ABSOLUTELY NO WARRANTY. You may redistribute\ncopies of the plugins under the terms of the GNU General Public License.\nFor more information about these matters, see the file named COPYING.\n";
20 20
21my $version = undef; 21my $version = undef;
22my $help = undef; 22my $help = undef;
diff --git a/tools/tinderbox_build b/tools/tinderbox_build
index 12528d9..48836b1 100755
--- a/tools/tinderbox_build
+++ b/tools/tinderbox_build
@@ -1,6 +1,6 @@
1#!/usr/bin/perl 1#!/usr/bin/perl
2# tinderbox_build.pl 2# tinderbox_build.pl
3# This script builds the nagiosplugins and then sends 3# This script builds the monitoringplugins and then sends
4# logs back to the master tinderbox server 4# logs back to the master tinderbox server
5# 5#
6# This script is based on mozilla-unix.pl which comes with tinderbox2 6# This script is based on mozilla-unix.pl which comes with tinderbox2
@@ -34,7 +34,7 @@ my $ReportStatus = 0; # Do not send results to server
34my $Tinderbox_server = '-p 1022 -o StrictHostKeyChecking=no tinderbox2@tinderbox.opsera.com'; 34my $Tinderbox_server = '-p 1022 -o StrictHostKeyChecking=no tinderbox2@tinderbox.opsera.com';
35 35
36# These shouldn't really need to be changed 36# These shouldn't really need to be changed
37my $BuildTree = 'nagiosplug'; 37my $BuildTree = 'monitoringplug';
38my $BuildName = ''; 38my $BuildName = '';
39my $ConfigureArgs = $ENV{CONFIGURE_ARGS}; 39my $ConfigureArgs = $ENV{CONFIGURE_ARGS};
40 40
@@ -81,7 +81,7 @@ sub BuildIt {
81 chdir("$StartDir"); 81 chdir("$StartDir");
82 82
83 my $StartTime = time; 83 my $StartTime = time;
84 if (-e (my $file = "nagios-plugins.spec")) { 84 if (-e (my $file = "monitoring-plugins.spec")) {
85 open F, $file; 85 open F, $file;
86 while (<F>) { 86 while (<F>) {
87 if (/^Version: trunk-(\d\d\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/) { 87 if (/^Version: trunk-(\d\d\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/) {