summaryrefslogtreecommitdiff
path: root/net/nagios/scripts
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2003-04-07 01:16:37 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2003-04-07 01:16:37 +0000
commit74feb01ba0fc763344d31498c5f9948bc2111e1d (patch)
tree3c80bf978646b814f8f81154bbc29fd7c41e06ac /net/nagios/scripts
parentMAINTAINER UPDATE: net/nagios-plugins (diff)
MAINTAINER UPDATE: net/nagios
- move nagios workfile directory from /usr/local/var/nagios to /var/spool/nagios. /usr/local is read-only on some NFS booted systems. - remove scripts/checkps, everybody should have a working /bin/ps by now. - add new switches WITH_MYSQL and WITH_PGSQL which enable support for putting configuration files into a MySQL or PostgreSQL database, based on a patch submitted in PR 48102 by Krzysztof Stryjek <wtp@mud.pl> PR: ports/48988 Submitted by: Blaz Zupan <blaz@si.FreeBSD.org>
Notes
Notes: svn path=/head/; revision=78478
Diffstat (limited to 'net/nagios/scripts')
-rw-r--r--net/nagios/scripts/checkps10
1 files changed, 0 insertions, 10 deletions
diff --git a/net/nagios/scripts/checkps b/net/nagios/scripts/checkps
deleted file mode 100644
index 6014bfca04cb..000000000000
--- a/net/nagios/scripts/checkps
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-/bin/ps 999999 2>&1 >/dev/null
-if [ $? = 0 ]; then
- echo "You need to upgrade to RELENG_3, RELENG_4, or HEAD sometime"
- echo "after July 8, 2000 around 5:15AM UTC, so that ps(1) will"
- echo "return an error code if a PID does not exist. Nagios needs this!"
- exit
-else
- echo "Great, you have a working ps(1)! Nagios can build."
-fi