]> andersk Git - moira.git/blame_incremental - gen/nfs.sh
remove the Solaris tmpfs hack since everything should be running the
[moira.git] / gen / nfs.sh
... / ...
CommitLineData
1#!/bin/csh -f
2# This script performs nfs updates on servers.
3#
4# $Header$
5
6# The following exit codes are defined and MUST BE CONSISTENT with the
7# error codes the library uses:
8set MR_NOCRED = 47836470
9set MR_MKCRED = 47836474
10set MR_TARERR = 47836476
11
12set path=(/etc /bin /usr/bin /usr/etc /usr/athena/etc)
13set nonomatch
14
15# The file containg the information for the update
16set TARFILE=/var/tmp/nfs.out
17# The directory into which we will empty the tarfile
18set SRC_DIR=/var/tmp/nfs.dir
19
20# Alert if the tarfile does not exist
21if (! -r $TARFILE) then
22 exit $MR_TARERR
23endif
24
25# Create a fresh source directory
26rm -rf $SRC_DIR
27mkdir $SRC_DIR
28chmod 755 $SRC_DIR
29
30set uchost=`hostname | tr '[a-z]' '[A-Z]'`
31if ($uchost !~ *.*) then
32 set uchost=$uchost.MIT.EDU
33endif
34
35cd $SRC_DIR
36
37# Just extract everything since some of what we need exists as
38# hardlinks and tar doesn't deal well with extracting them in isolation.
39tar xf $TARFILE
40if ($status) exit $MR_TARERR
41
42foreach type (dirs quotas)
43 echo "Installing ${type}:"
44 foreach i ( ${uchost}*.${type} )
45 if (-e $i) then
46 # Convert the from the filename HOST.@dev@device.type to /dev/device
47 set dev=`echo $i | sed "s,.${type},," | sed "s,${uchost}.,," | sed "s,@,/,g"`
48 echo ${uchost}:$dev
49 ./install_${type} $dev < $i
50 if ($status) exit $status
51 if ($type == quotas) ./zero_quotas $dev < $i
52 if ($status) exit $status
53 # save the files used here for later debugging
54 mv $i /var/tmp
55 endif
56 end
57end
58
59# build new credentials files.
60rm -f /usr/etc/credentials.new
61cp ${uchost}.cred /usr/etc/credentials.new
62if ($status) exit $MR_NOCRED
63if (-e /usr/etc/credentials.local) then
64 cat /usr/etc/credentials.local >> /usr/etc/credentials.new
65endif
66
67# After this point, if /tmp gets cleared out by reactivate (which
68# happens on a combined server/workstation) we don't care.
69mkcred /usr/etc/credentials.new
70if ($status) exit $MR_MKCRED
71
72# Try to install the files
73foreach e ( "" .dir .pag)
74 mv -f /usr/etc/credentials.new$e /usr/etc/credentials$e
75end
76
77# If any of them didn't get installed, fail
78foreach e ( "" .dir .pag)
79 if (! -e /usr/etc/credentials$e) exit $MR_NOCRED
80end
81
82
83
84# cleanup
85if ( -f $TARFILE ) rm -f $TARFILE
86if ( -d $SRC_DIR ) then
87 cd $SRC_DIR/..
88 rm -rf $SRC_DIR
89endif
90if ( -f $0 ) rm -r $0
91
92exit 0
This page took 0.044179 seconds and 5 git commands to generate.