Print this page
8112 EOF crazier RPC daemons

@@ -21,11 +21,10 @@
 
 #
 # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
 # Use is subject to license terms.
 #
-# ident "%Z%%M% %I%     %E% SMI"
 
 #
 # This script tests that several of the the mib:::udp* probes fire and fire
 # with a valid args[0].
 #

@@ -48,14 +47,14 @@
                 exit(0);
         }
 EOF
 }
 
-rupper()
+udpper()
 {
         while true; do
-                rup localhost
+                showmount localhost >/dev/null 2>&1
                 /usr/bin/sleep 1
         done
 }
 
 if [ $# != 1 ]; then

@@ -63,12 +62,12 @@
         exit 2
 fi
 
 dtrace=$1
 
-rupper &
-rupper=$!
+udpper &
+udpper=$!
 script
 status=$?
 
-kill $rupper
+kill $udpper
 exit $status