Standardize License information
[openafs.git] / src / afsd / afs.rc.solaris
1 #!/bin/sh
2 # Copyright 2000, International Business Machines Corporation and others.
3 # All Rights Reserved.
4
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
8
9 # afs.rc: rc script for AFS on Solaris 2.x platforms
10 #
11 # Install this script as /etc/init.d/afs.rc
12 # then make links like this:
13 # ln -s ../init.d/afs.rc /etc/rc0.d/K66afs
14 # ln -s ../init.d/afs.rc /etc/rc3.d/S99afs 
15 #
16 CONFIG=/usr/vice/etc/config
17 AFSDOPT=$CONFIG/afsd.options
18 PACKAGE=$CONFIG/package.options
19
20 LARGE="-stat 2800 -dcache 2400 -daemons 5 -volumes 128"
21 MEDIUM="-stat 2000 -dcache 800 -daemons 3 -volumes 70"
22 SMALL="-stat 300 -dcache 100 -daemons 2 -volumes 50"
23
24 if [ -f $AFSDOPT ]; then
25     OPTIONS=`cat $AFSDOPT`
26 else
27     OPTIONS=$MEDIUM
28 fi
29
30 # Need the commands ps, awk, kill, sleep
31 PATH=${PATH}${PATH:+:}/sbin:/bin:/usr/bin
32
33 killproc() {            # kill the named process(es)
34         fpid='$2'
35         fproc='$9'
36         pid=`ps -ef | \
37            awk "$fproc == \"$1\" || $fproc ~ /.*\/$1/ { print $fpid }"`
38         [ "$pid" != "" ] && kill -KILL $pid
39 }
40
41 case $1 in
42 'start')
43
44 #
45 # Make sure afs exists in /etc/name_to_sysnum
46 #
47 if grep -s "afs" /etc/name_to_sysnum > /dev/null; then
48     echo "Entry for afs already exists in /etc/name_to_sysnum"
49 else
50     echo "Creating entry for afs in /etc/name_to_sysnum"
51     cp /etc/name_to_sysnum /etc/name_to_sysnum.orig
52     sed '/nfs/i\
53 afs                     105' /etc/name_to_sysnum > /tmp/name_to_sysnum
54     mv /tmp/name_to_sysnum /etc/name_to_sysnum
55     echo "Rebooting now for new /etc/name_to_sysnum to take effect"
56     reboot
57 fi
58
59 #
60 # Load kernel extensions
61 #
62
63 if [ -f /kernel/fs/afs ]; then
64         echo "Loading AFS kernel extensions"
65         modload /kernel/fs/afs
66 else
67         echo "/kernel/fs/afs does not exist. Skipping AFS startup."
68         exit 1
69 fi
70
71 #
72 # Start the AFS server processes if a bosserver exists
73 #
74
75 if [ -x /usr/afs/bin/bosserver ]; then
76         echo "Starting AFS Server processes"
77         /usr/afs/bin/bosserver
78         OPTIONS="$OPTIONS -nosettime"
79         sleep 30
80 fi
81
82 #
83 # Check that all of the client configuration files exist
84 #
85
86 for file in /usr/vice/etc/afsd /usr/vice/etc/cacheinfo \
87             /usr/vice/etc/ThisCell /usr/vice/etc/CellServDB
88 do
89         if [ ! -f ${file} ]; then
90                 echo "${file} does not exist. Not starting AFS client."
91                 exit 1
92         fi
93 done
94
95 #
96 # Check that the root directory for AFS (/afs) 
97 # and the cache directory (/usr/vice/cache) both exist
98 #
99
100 for dir in `awk -F: '{print $1, $2}' /usr/vice/etc/cacheinfo`
101 do
102         if [ ! -d ${dir} ]; then
103                 echo "${dir} does not exist. Not starting AFS client."
104                 exit 2
105         fi
106 done
107
108 echo "Starting afsd"
109 /usr/vice/etc/afsd $OPTIONS
110
111 #
112 # Run package to update the disk
113 #
114 if [ -f /usr/afsws/etc/package -a -f $PACKAGE ]; then
115         /usr/afsws/etc/package -v -o `cat $PACKAGE` > /dev/console 2>&1
116 case $? in
117 0)
118         (echo "Package completed successfully") > /dev/console 2>&1
119         date > /dev/console 2>&1
120         ;;
121 4)
122         (echo "Rebooting to restart system") > /dev/console 2>&1
123         sync
124         /etc/reboot
125         ;;
126 *)
127         (echo "Package update failed; continuing") > /dev/console 2>&1
128         ;;
129 esac
130
131 fi
132
133 #
134 # Start AFS inetd services
135 # (See the AFS Command Ref. for notes on the proper configuration of inetd.afs)
136 #
137 if [ -f /usr/sbin/inetd.afs -a -f /etc/inetd.conf.afs ]; then
138         /usr/sbin/inetd.afs /etc/inetd.conf.afs
139 fi
140
141 echo ;;
142
143 'stop')
144
145 #
146 # Stop the AFS inetd and server processes
147 # Note that the afsd processes cannot be killed
148 #
149
150 echo "Killing inetd.afs"
151 killproc inetd.afs
152
153 bosrunning=`ps -ef | awk '/bosserver/ && ! /awk/ && ! /dcebos/'`
154 if [ "${bosrunning}" != "" ]; then
155         echo "Shutting down AFS server processes"
156         /usr/afs/bin/bos shutdown localhost -localauth -wait
157         echo "Killing AFS bosserver"
158         killproc bosserver
159 fi
160
161 echo ;;
162
163 *)      echo "Invalid option supplied to $0"
164         exit 1;;
165 esac