2000-11-04 02:13:13 +00:00
|
|
|
#! /bin/sh
|
2000-11-04 10:01:08 +00:00
|
|
|
# Copyright 2000, International Business Machines Corporation and others.
|
|
|
|
# All Rights Reserved.
|
|
|
|
#
|
|
|
|
# This software has been released under the terms of the IBM Public
|
|
|
|
# License. For details, see the LICENSE file in the top-level source
|
|
|
|
# directory or online at http://www.openafs.org/dl/license10.html
|
|
|
|
|
2000-11-04 02:13:13 +00:00
|
|
|
# Configuration information for AFS client
|
|
|
|
|
|
|
|
# AFS_CLIENT and AFS_SERVER determine if we should start the client and or
|
|
|
|
# the bosserver. Possible values are on and off.
|
|
|
|
AFS_CLIENT=on
|
|
|
|
AFS_SERVER=off
|
|
|
|
|
|
|
|
# AFS client configuration options:
|
|
|
|
LARGE="-stat 2800 -dcache 2400 -daemons 5 -volumes 128"
|
|
|
|
MEDIUM="-stat 2000 -dcache 800 -daemons 3 -volumes 70"
|
|
|
|
SMALL="-stat 300 -dcache 100 -daemons 2 -volumes 50"
|
|
|
|
OPTIONS=$MEDIUM
|
|
|
|
|
|
|
|
# Set to "-verbose" for a lot of debugging information from afsd. Only
|
|
|
|
# useful for debugging as it prints _a lot_ of information.
|
|
|
|
VERBOSE=
|
|
|
|
|
2001-04-30 16:18:39 +00:00
|
|
|
# OPTIONS are the options passed to afsd.
|
2001-04-30 00:36:36 +00:00
|
|
|
OPTIONS="$OPTIONS $VERBOSE"
|
2000-11-04 02:13:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Sample server preferences function. Set server preferences using this.
|
|
|
|
# afs_serverprefs() {
|
|
|
|
# /usr/afsws/etc/fs setserverprefs <host> <rank>
|
|
|
|
#}
|
|
|
|
|
|
|
|
# Either the name of an executable script or a set of commands go here.
|
|
|
|
# AFS_POST_INIT=afs_serverprefs
|
|
|
|
AFS_POST_INIT=
|