]> andersk Git - moira.git/blame_incremental - gen/nfs.sh
fix list extraction problems
[moira.git] / gen / nfs.sh
... / ...
CommitLineData
1#!/bin/csh -f
2# This script performs nfs updates on servers.
3#
4# $Source$
5echo '$Header$'
6
7# The following exit codes are defined and MUST BE CONSISTENT with the
8# SMS error codes the library uses:
9set SMS_NOCRED = 47836470
10set SMS_MKCRED = 47836474
11set SMS_TARERR = 47836476
12
13set path=(/etc /bin /usr/bin /usr/etc)
14
15# The file containg the information for the update
16set TARFILE=/tmp/nfs.out
17# The directory into which we will empty the tarfile
18set SRC_DIR=/tmp/nfs.dir
19
20# Alert if the tarfile does not exist
21if (! -r $TARFILE) then
22 exit $SMS_TARERR
23endif
24
25# Create a fresh source directory
26rm -rf $SRC_DIR
27mkdir $SRC_DIR
28chmod 755 $SRC_DIR
29
30# Note that since SMS is going to be exported, assuming .MIT.EDU is
31# incorrect. For now however, it is probably not worth the effort
32# to canonicalize the hostname, especially with the upcoming update
33# protocol redesign
34set uchost=`/bin/hostname | tr a-z A-Z`.MIT.EDU
35
36cd $SRC_DIR
37
38# Just extract everything since some of what we need exists as
39# hardlinks and tar doesn't deal well with extracting them in isolation.
40tar xf $TARFILE
41if ($status) exit $SMS_TARERR
42
43foreach type (dirs quotas)
44 echo "Installing ${type}:"
45 foreach i ( ${uchost}*.${type} )
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 end
52end
53
54# build new credentials files.
55rm -f /usr/etc/credentials.new
56cp ${uchost}.cred /usr/etc/credentials.new
57if ($status) exit $SMS_NOCRED
58
59/usr/etc/mkcred /usr/etc/credentials.new
60if ($status) exit $SMS_MKCRED
61
62# Try to install the files
63foreach e ( "" .dir .pag)
64 mv -f /usr/etc/credentials.new$e /usr/etc/credentials$e
65end
66
67# If any of them didn't get installed, fail
68foreach e ( "" .dir .pag)
69 if (! -e /usr/etc/credentials$e) exit $SMS_NOCRED
70end
71
72
73
74# cleanup
75rm -f $TARFILE
76cd $SRC_DIR/..
77rm -rf $SRC_DIR
78rm $0
79
80exit 0
This page took 0.03157 seconds and 5 git commands to generate.