1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/net/netsaint/scripts/checkps
Will Andrews 24138afdff Add NetSaint 0.0.5-2, an extremely powerful network monitoring system.
Patches submitted by:	Jim Sloan <odinn@atlantabiker.net>, to whom I am
			extremely grateful!  Thanks!
2000-07-12 18:43:32 +00:00

11 lines
346 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. Netsaint needs this!"
exit
else
echo "Great, you have a working ps(1)! Netsaint can build."
fi