diff options
author | Will Andrews <will@FreeBSD.org> | 2000-07-12 18:43:32 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2000-07-12 18:43:32 +0000 |
commit | 24138afdffd13e51deacee92f648ce3f061035bd (patch) | |
tree | d4864831023d0c7fbfaee7df7db8854da0053999 /net/netsaint/scripts/checkps | |
parent | Remove call to deprecated function, dllockinit(). (diff) |
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!
Notes
Notes:
svn path=/head/; revision=30533
Diffstat (limited to 'net/netsaint/scripts/checkps')
-rw-r--r-- | net/netsaint/scripts/checkps | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/net/netsaint/scripts/checkps b/net/netsaint/scripts/checkps new file mode 100644 index 000000000000..61a4d67baaa7 --- /dev/null +++ b/net/netsaint/scripts/checkps @@ -0,0 +1,10 @@ +#!/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 |