#
# This defines paths for ULTRIX apps.
#

##
## $tar and $tar_extract are special.  They are needed for the
## local rscan no matter what OS we're scanning from.
##
## They must conform to the format:
##   $tar{OSNAMEOSVERSION} = 'something';
##  where OSNAME is, for instance, IRIX or SunOS, etc. and 
##  OSVERSION is 4.0.5, 5.4, etc. or 'default', which is a catchall.
## they are accessable as this, but also as just plain
## $tar and $tar_extract when looked for inside scans in a module.
##
$tar{'ULTRIXdefault'}         = '/bin/tar';
$tar_extract{'ULTRIXdefault'} = 'xBf';


$rsh         = '/usr/ucb/rsh';
$tar_create  = 'cBf';
$hostname    = '/bin/hostname';
$pwd         = '/bin/pwd';
$showmount   = '/etc/showmount';
$find        = '/usr/bin/find';
$remove      = '/bin/rm -rf';

## OS revision number
chop($os{'version'} = `/bin/uname -r`);

## CPU type ("IP22", etc)
chop($cpu = `/bin/uname -m`);

## machine shortname
chop($machine = `/bin/uname -n`);

## We should always exit successfully
1;
