#!/bin/sh # # bbsys.local.dynix # From Stephen Couch (scouch@fremontcomp.com) # # BIG BROTHER # OVERRIDE SETTINGS IN bbsys.sh FOR VARIOUS OPERATING SYSTEMS # PS="/bin/ps -ef" # dynix DF="/bin/df -k" # dynix #If you are using syslogd, change the file name to suit your site MSGFILE="/usr/adm/log/messages" # using syslogd PING="/etc/ping" # CONNECTIVITY TEST FIND="/bin/find" TOUCH="/bin/touch" GREP="/usr/bin/egrep" SORT="/bin/sort" LS="/bin/ls" CAT="/bin/cat" DATE="/bin/date" TAIL="/bin/tail" SED="/bin/sed" UPTIME="/usr/bin/ruptime" # uptime will not show loading ! # normal load levels need to be # around 600 ( CPUWARN ) or more ! WC="/bin/wc -l" WHO="/bin/who" RM="/bin/rm" MAIL="/usr/bin/mailx -s" # PING PARAMETERS # Added by Gunnar Helliesen to accomodate different # styles of ping commands. # # From Jim Whitby jim@tps.tpsdata.com # # The leading switches are -sni3 # ( no name lookup and wait 3 seconds for a reply ). PINGPAR1="-n -c 1 -i 3 -s 56 " # No trailing switches PINGPAR2="" NSLOOKUP="/usr/etc/nslookup" EXPR="/bin/expr"