# -*- sh -*-
#
#     tiger - A UN*X security checking system
#     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
#
#    This program is free software; you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation; either version 1, or (at your option)
#    any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#     Please see the file `COPYING' for the complete copyright notice.
#
# UNICOS/config - 06/14/93
#
#-----------------------------------------------------------------------------
#

[ "$UUID" = "" ] &&
  UNAME=`/bin/who am i | /usr/bin/awk '{ print $1 }'`

export UNAME

[ "$UNAME" != "root" ] && {
  echo " " 1>&2
  echo "This script should be run from a super-user account." 1>&2
  echo " " 1>&2
#  exit 1
}

CAT=/bin/cat
# Try to use /usr/ucb/ls so that we can use -L option
LS=/usr/ucb/ls
LSGROUP=-g
LSLINK=-L
[ ! -x $LS ] && {
  LS=/bin/ls
  LSGROUP=
  LSLINK=
}
#
RM=/bin/rm
AWK=/usr/bin/awk
GREP=/bin/grep
EGREP=/usr/bin/egrep
SGREP="$GREP -s"
SED=/bin/sed
SORT=/bin/sort
COMM=/usr/bin/comm
TAIL=/bin/tail
MV=/bin/mv
TR=/usr/bin/tr
JOIN=/usr/bin/join
GROUPSS=/usr/ucb/groups
FILECMD=/bin/file
UNIQ=/bin/uniq
BASENAME=/bin/basename
CHMOD=/bin/chmod
CHOWN=/bin/chown
LN=/bin/ln
PASTE=/usr/bin/paste
DIFF=/bin/diff
MAILER=/bin/mail
SENDMAILS="/usr/lib/sendmail"
SENDMAILCF="/usr/lib/sendmail.cf"
export SENDMAILS SENDMAILCF
#
export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
export CHMOD CHOWN LN PASTE DIFF MAILER
#
UNAME=/bin/uname
GETHOSTNAME=/bin/hostname
EXPR=/bin/expr
STRINGS=/usr/ucb/strings
FIND=/bin/find
# XDEV is called -mount
FINDXDEV=-mount
# There is no fmt with UNICOS
FMT=/bin/cat
CC=/bin/scc
[ ! -x $CC ] && {
  CC=/bin/cc
}
PS=/bin/ps
DATE=/bin/date
DATECMD="$DATE +%y%m%d"
TIMECMD="$DATE +%H:%M"
TESTLINK=-h
TESTEXEC=-x
#
export UNAME GETHOSTNAME EXPR STRINGS FIND FINDXDEV
export FMT CC PS DATE DATECMD TIMECMD TESTLINK TESTEXEC
#
WAIT=wait
#
#
[ -x /usr/bin/ypcat ] && YPCAT=/usr/bin/ypcat
#
export WAIT YPCAT NISCAT
#
#
MAILSPOOL=/usr/mail
ETCSHELLS=/etc/shells
CRONSPOOL=/usr/spool/cron/crontabs
#
export MAILSPOOL ETCSHELLS CRONSPOOL
#
CDIR="$BASEDIR/systems"
eval `
  while read var file
  do
    if [ -f "$CONFIG_DIR/$file" ]; then
      loc="$CONFIG_DIR"
    elif [ -f "$CDIR/$OS/$REL/$REV/$ARCH/$file" ]; then
      loc="$CDIR/$OS/$REL/$REV/$ARCH"
    elif [ -f "$CDIR/$OS/$REL/$REV/$file" ]; then
      loc="$CDIR/$OS/$REL/$REV"
    elif [ -f "$CDIR/$OS/$REL/$file" ]; then
      loc="$CDIR/$OS/$REL"
    elif [ -f "$CDIR/$OS/$file" ]; then
      loc="$CDIR/$OS"
    else
      loc=""
    fi
    if [ "$loc" != "" ]; then
      echo $var="$loc/$file;"
    else
      echo "$var=;"
    fi
    echo "export $var;"
  done << EOL
GEN_PASSWD_SETS gen_passwd_sets
GEN_GROUP_SETS gen_group_sets
GEN_ALIAS_SETS gen_alias_sets
CHECK_CRON check_cron
GEN_BOOTPARAM_SETS gen_bootparam_sets
GEN_EXPORT_SETS gen_export_sets
GEN_SERVICES_SETS gen_services
GET_MOUNTS gen_mounts
SIGNATURE_FILE signatures
SERVICESFILE services
INETDFILE inetd
FILE_ACL file_access_list
SUID_LIST suid_list
REL_FILE_EXCP rel_file_exp_list
GEN_CRON_FILES gen_cron
GETCLIENTDIRS gendlclients
GEN_INETD_SETS gen_inetd
GETDISKS getdisks
GETEMBEDDEDLIST embedlist
GETUSERHOME getuserhome
EOL
`
