-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetMapfile
61 lines (54 loc) · 995 Bytes
/
setMapfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/sh
cd `dirname $0`
USAGE="Usage: $0 {dev|all}"
CONFIGURATION=./Configuration
#
# Make sure the configuration file exists.
#
if [ ! -r ${CONFIGURATION} ]
then
echo "Missing configuration file"; exit 1
fi
#
# Get the mapping file settings that are needed by this script.
#
exec 4<&0
exec < ${CONFIGURATION}
while read name value junk
do
case "$name" in
GROUP)
GROUP=$value;;
MAPFILE)
MAPFILE=$value;;
MAPFILE_ALL)
MAPFILE_ALL=$value;;
MAPFILE_DEV)
MAPFILE_DEV=$value;;
*)
;;
esac
done
exec 0<&4
#
# Determine which mapping file should be activated, based on the argument
# to the script.
#
if [ $# -ne 1 ]
then
echo ${USAGE}; exit 1
elif [ "$1" = "dev" ]
then
MAP=${MAPFILE_DEV}
elif [ "$1" = "all" ]
then
MAP=${MAPFILE_ALL}
else
echo ${USAGE}; exit 1
fi
#
# Activate the mapping file.
#
rm -f ${MAPFILE}
ln -s ${MAP} ${MAPFILE}
chgrp ${GROUP} ${MAPFILE}