#
# AIX pathconfig data
#

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

##
## $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{'AIXdefault'}         = '/bin/tar';
$tar_create{'AIXdefault'}  = 'xBf';


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

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

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

## We should always exit successfully
1;
