summaryrefslogtreecommitdiff
path: root/net-mgmt/netsaint/scripts/checkps
diff options
context:
space:
mode:
Diffstat (limited to 'net-mgmt/netsaint/scripts/checkps')
-rw-r--r--net-mgmt/netsaint/scripts/checkps10
1 files changed, 10 insertions, 0 deletions
diff --git a/net-mgmt/netsaint/scripts/checkps b/net-mgmt/netsaint/scripts/checkps
new file mode 100644
index 000000000000..61a4d67baaa7
--- /dev/null
+++ b/net-mgmt/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