#!/usr/bin/sh # # bbsys.local.unixware version 7 # From Jim Whitby (jwhitby@ix.netcom.com) # New address jim@tps.tpsdata.com # # BIG BROTHER # OVERRIDE SETTINGS IN bbsys.sh FOR VARIOUS OPERATING SYSTEMS # PS="/bin/ps -ef" # Unixware DF="/usr/bin/df -k" # Unixware #If you are *not* using syslogd, this is the default file name # MSGFILE="/var/adm/log/osmlog # using osm #If you are using syslogd, change the file name to suit your site MSGFILE="/var/adm/log/messages" # using syslogd PING="/usr/sbin/ping" # CONNECTIVITY TEST LS="/usr/bin/ls" CAT="/usr/bin/cat" DATE="/usr/bin/date" TAIL="/usr/bin/tail" SED="/usr/bin/sed" WC="/usr/bin/wc -l" WHO="/usr/bin/who" RM="/usr/bin/rm" # 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="-sni3 " # The trailing switches are 56 1 ( 56 byte packets and ping only once ). PINGPAR2=" 56 1" NSLOOKUP="/usr/sbin/nslookup"