1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
# -*- sh -*-
#
# tiger - A UN*X security checking system
# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
#
# Please see the file `COPYING' for the complete copyright notice.
#
# site-sample - 04/22/93
#
#-----------------------------------------------------------------------------
#
#
# Sample site configuration file
#
# Rename this to either "site" or "site-`hostname`"
#
#------------------------------------------------------------------------
#
# How to determine whether user home directory is local or remote?
#
GETFSHOST=getfs-std # Do everybody... don't check
#GETFSHOST=getfs-nfs # Try to guess if it is NFS mount
#GETFSHOST=getfs-automount # SUN automount tables
#GETFSHOST=getfs-amd # BSD 4.4 AMD tables
#
# Name of file or NIS map containing automounter maps for user directories
#
AUTOHOMEMAP=userhome.amd
export GETFSHOST AUTOHOMEMAP
#
# List of '|' separated names this host is known by.
#
# i.e:
#HOSTNAMESLIST="jupiter|jupiter.tamu.edu|sc.tamu.edu|sc"
HOSTNAMESLIST="$HOSTNAME"
#
# Any of the utilities can be replaced by placing assignments here
# Most of the variables are the uppercase version of the command
# name, though there are a few exceptions.
#
#FIND=/usr/local/gnu/bin/find
#AWK=/usr/local/bin/mawk
#
#------------------------------------------------------------------------
#
# Define where Crack is installed (this is the path to the Crack script)
#
#CRACKDIR=/usr/local/src/crack
#CRACK=/usr/local/src/crack/Crack
#REPORTER=/usr/local/src/crack/Reporter
|