2 # Copyright 2000, International Business Machines Corporation and others.
5 # This software has been released under the terms of the IBM Public
6 # License. For details, see the LICENSE file in the top-level source
7 # directory or online at http://www.openafs.org/dl/license10.html
9 # AFS Start and stop AFS components
13 # description: AFS is a distributed file system which provides location
14 # transparency, caching and secure authentication.
15 # Additional configuration can be done in the /etc/sysconfig/afs
16 # file. Read the documentation in that file for more information.
18 # The following section is used at least by SuSE insserv(8)
21 # Required-Start: $network
22 # Required-Stop: $network
24 # Default-Stop: 0 1 2 6
25 # Description: AFS is a distributed file system which provides location
26 # transparency, caching and secure authentication.
27 # Additional configuration can be done in the /etc/sysconfig/afs
28 # file. Read the documentation in that file for more information.
31 # Note that AFS does not use a pid file in /var/run. It is turned off by
35 # check for special bootup functions
36 if [ -f /etc
/rc.d
/init.d
/functions
] ; then
37 .
/etc
/rc.d
/init.d
/functions
40 # special (RedHat) functions not available...
41 # so I provide neccessary replacements (e.g. for SuSE)
43 function echo_failure
() { echo -n " - failed." ; }
45 function echo_success
() { echo -n " - successful." ; }
47 # these are hopefully all functions I use...
53 if [ "$BOOTUP" = "color" ]; then
54 $
* && echo_success || echo_failure
61 SYSCNF
=${SYSCNF:-/etc/sysconfig/afs}
62 KERNEL_VERSION
=`uname -r`
64 # Gather up options and post startup script name, if present
65 if [ -f $SYSCNF ] ; then
69 CACHEINFO
=${CACHEINFO:-/usr/vice/etc/cacheinfo}
70 CACHE
=${CACHEDIR:-/usr/vice/cache}
72 AFSD
=${AFSD:-/usr/vice/etc/afsd}
73 BOSSERVER
=${BOSSERVER:-/usr/afs/bin/bosserver}
74 BOS
=${BOS:-/usr/bin/bos}
75 KILLAFS
=${KILLAFS:-/usr/vice/etc/killafs}
77 # is_on returns 1 if value of arg is "on"
79 if test "$1" = "on" ; then return 0
85 if hash ip
2>/dev
/null
>/dev
/null
; then
87 elif hash ifconfg
2>/dev
/null
>/dev
/null
; then
90 echo afs
: Unable to check interfaces.
1>&2
93 ADDRS
=`LANG=C ${IP} | grep 'inet ' | grep -v 127.0.0.1 | wc -l`
94 if [ "$ADDRS" = "" ]; then
95 echo afs
: No interfaces with IP address
1>&2
97 elif [ $ADDRS = 0 ]; then
98 echo afs
: No interfaces with IP address
1>&2
104 # If choose_client can't correctly determine which client to use, set
108 # Use the second field of the uname -v output instead of just
109 # doing a match on the whole thing to protect against matching
110 # a timezone named SMP -- I don't know of one, but let's be
113 set X
`uname -v`; shift
115 SMP
) MP
=.mp
;; # MP system
116 *) MP
= ;; # SP system
119 # For now, just use uname -r to get the module version.
120 case $KERNEL_VERSION in
122 LIBAFS
=libafs-
$KERNEL_VERSION$MP.o
125 LIBAFS
=libafs-
$KERNEL_VERSION$MP.ko
131 # Find prefix symbol to use with insmod. We find the unregister_filesystem
132 # string from /proc/ksyms since we know it's there. If /proc/ksyms does not
133 # exist, we print that info to the console and use the uname -v output to
134 # decide on a prefix.
135 # unregister_filesystem_Rsmp_b240cad8 is a typcial SMP version string from
136 # a kernel built from ftp.kernel.org
138 case $KERNEL_VERSION in
140 KSYMS_FILE
=/proc
/ksyms
143 KSYMS_FILE
=/proc
/kallsyms
146 SEARCH_STR
="unregister_filesystem"
147 DEFAULT_SMP_PREFIX
="smp_" # Redhat kernels need "smp" instead
148 PREFIX
="" # none needed for UP with <= 1Gig memory
153 h8
="$h$h$h$h$h$h$h$h"
156 set X
`egrep "\<$SEARCH_STR" $KSYMS_FILE 2> /dev/null`; shift
158 case $KERNEL_VERSION in
171 # No versioning in kernel symbols
174 suffix
=${str#${SEARCH_STR}_R}
180 echo afsd
: Cannot
find \"$SEARCH_STR\" in file $KSYMS_FILE
183 echo afsd
: Malformed kernel version symbol
\"$str\"
187 echo Guessing prefix from output of uname
-v
188 set X
`uname -v`; shift
191 PREFIX
=$DEFAULT_SMP_PREFIX
198 MODLOADDIR
=${MODLOADDIR:-/usr/vice/etc/modload}
199 # load_client loads the AFS client module if it's not already loaded.
201 # If LIBAFS is set, use it.
202 if [ -z "$LIBAFS" ] ; then
203 # Try to determine the right client.
207 if [ ! -f "$MODLOADDIR/$LIBAFS" ] ; then
208 echo AFS module
$MODLOADDIR/$LIBAFS does not exist. Not starting AFS.
212 # We need exportfs in order to access the cache files. Load it, but
213 # ignore errors as on some machines it may be built in to the kernel,
215 /sbin
/modprobe exportfs
>/dev
/null
2>&1
217 if [ -f $KSYMS_FILE ]; then
218 # use the prefix command if required
219 case $KERNEL_VERSION in
222 /sbin
/insmod
${PREFIX:+-P $PREFIX} -f -m $MODLOADDIR/$LIBAFS > $MODLOADDIR/libafs.map
2>&1
225 /sbin
/insmod
$MODLOADDIR/$LIBAFS > $MODLOADDIR/libafs.map
2>&1
229 /sbin
/insmod
$MODLOADDIR/$LIBAFS > $MODLOADDIR/libafs.map
2>&1
233 generate_cacheinfo
() {
234 if [ "$CACHESIZE" = "AUTOMATIC" ]; then
235 LINE
=`df -k $CACHE | tail -1`
236 PART
=`echo $LINE | awk '{ if ( ($NF != "/usr") && ($NF != "/") ) print $NF; else print "NONE";}'`
237 if [ "$PART" = "NONE" ]; then
238 echo "$CACHE or /usr/vice is not a separate partition"
239 echo "you have to change the cachesize in $SYSCNF by hand"
240 echo "AFS will be started with a VERY small cache of 8Mb."
243 # Check to see if df has pretty-printed for long dev (i.e. LVM)
244 FCHAR
=`echo $LINE | cut -c 1`
245 if [ "$FCHAR" = "/" ]; then
246 PARTSIZE
=`echo $LINE | awk '{print $2}'`
248 PARTSIZE
=`echo $LINE | awk '{print $1}'`
250 CACHESIZE
=`echo $PARTSIZE | awk '{printf "%d",int(($1*.8)/1000)*1000}'`
253 if [ "x$CACHESIZE" != "x" ]; then
254 echo $AFS:$CACHE:$CACHESIZE >$CACHEINFO
255 chmod 0644 $CACHEINFO
257 CACHESIZE
=`awk -F: '{print $3}' < $CACHEINFO`
261 choose_afsdoptions
() {
262 if [ -z "$OPTIONS" -o "$OPTIONS" = "AUTOMATIC" ]; then
263 if [ $CACHESIZE -lt 131072 ]; then
265 elif [ $CACHESIZE -lt 524288 ]; then
267 elif [ $CACHESIZE -lt 1048576 ]; then
269 elif [ $CACHESIZE -lt 2097152 ]; then
275 AFSD_OPTIONS
="$OPTIONS $VERBOSE"
276 if is_on
$ENABLE_AFSDB; then
277 AFSD_OPTIONS
="$AFSD_OPTIONS -afsdb"
279 if is_on
$ENABLE_DYNROOT; then
280 AFSD_OPTIONS
="$AFSD_OPTIONS -dynroot"
286 if [ ! "$afs_rh" -o ! -f /var
/lock
/subsys
/afs
]; then
287 if [ `echo "$OPTIONS" | grep -c dynroot` = 0 ]; then
290 # Load kernel extensions
291 if load_client
; then :
293 echo Failed to load AFS client
, not starting AFS services.
297 echo "Starting AFS services..... "
298 # Start bosserver, it if exists
299 if is_on
$AFS_SERVER && test -x $BOSSERVER ; then
301 test "$afs_rh" && touch /var
/lock
/subsys
/afs
302 if is_on
$WAIT_FOR_SALVAGE; then
303 # wait for fileserver to finish salvaging
305 while $BOS status localhost fs
2>&1 |
grep 'Auxiliary.*salvaging'; do
306 echo "Waiting for salvager to finish..... "
313 if is_on
$AFS_CLIENT && test -x $AFSD ; then
316 $AFSD ${AFSD_OPTIONS}
317 test "$afs_rh" && touch /var
/lock
/subsys
/afs
324 if [ ! "$afs_rh" -o -f /var
/lock
/subsys
/afs
]; then
326 echo "Stopping AFS services..... "
328 if is_on
$AFS_CLIENT ; then
329 if [ -x $KILLAFS ] ; then
330 runcmd
"Sending all processes using /afs the TERM signal ..." $KILLAFS TERM
331 runcmd
"Sending all processes using /afs the KILL signal ..." $KILLAFS KILL
336 if is_on
$AFS_SERVER && test -x $BOS ; then
337 echo "Stopping AFS bosserver"
338 $BOS shutdown localhost
-localauth -wait
339 killall
-HUP bosserver
342 LIBAFS
=`/sbin/lsmod | fgrep libafs`
343 if [ -n "$LIBAFS" ] ; then
344 LIBAFS
=`echo $LIBAFS | awk 'BEGIN { FS = " " } { print $1 }'`
348 rm -f /var
/lock
/subsys
/afs
359 echo Usage
: 'afs <start|stop|restart>'
365 action fool the Red Hat initscripts