freebsd-ports/net/nagios/scripts/checkps
Jun Kuriyama 610078358c Add nagios-1.0b1 after repocopy from net/netsaint.
Submitted by:	Blaz Zupan <blaz.zupan@amis.net>
PR:		35844
2002-05-29 06:53:40 +00:00

10 lines
342 B
Bash

#!/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