1 | #!/bin/sh
|
---|
2 | #
|
---|
3 | # $Id$
|
---|
4 | #
|
---|
5 | # This script sets up the network + NFS environment if needed.
|
---|
6 | #
|
---|
7 |
|
---|
8 |
|
---|
9 | # number of ping
|
---|
10 | ipcount=3
|
---|
11 |
|
---|
12 | # Get info from config file
|
---|
13 | ipdev=`grep nfs-dev /tmp/mondo-restore.cfg 2> /dev/null | cut -d' ' -f2-`
|
---|
14 | ipaddress=`grep nfs-client-ipaddr /tmp/mondo-restore.cfg 2> /dev/null | cut -d' ' -f2-`
|
---|
15 | ipnetmask=`grep nfs-client-netmask /tmp/mondo-restore.cfg 2> /dev/null | cut -d' ' -f2-`
|
---|
16 | ipbroadcast=`grep nfs-client-broadcast /tmp/mondo-restore.cfg 2> /dev/null | cut -d' ' -f2-`
|
---|
17 | ipgateway=`grep nfs-client-defgw /tmp/mondo-restore.cfg 2> /dev/null | cut -d' ' -f2-`
|
---|
18 | ipconf=""
|
---|
19 | script=""
|
---|
20 | export nfsmount=`grep nfs-server-mount /tmp/mondo-restore.cfg 2> /dev/null | cut -d' ' -f2-`
|
---|
21 | export imgname=`grep iso-prefix /tmp/mondo-restore.cfg 2> /dev/null | cut -d' ' -f2-`
|
---|
22 | if [ "$imgname" = "" ]; then
|
---|
23 | export imgname="mondorescue"
|
---|
24 | fi
|
---|
25 | export dirimg=`grep nfs-server-path /tmp/mondo-restore.cfg 2> /dev/null | cut -d' ' -f2-`
|
---|
26 | if [ "$dirimg" = "" ]; then
|
---|
27 | export dirimg="/"
|
---|
28 | fi
|
---|
29 |
|
---|
30 | # info from cmdline are predominent
|
---|
31 | for i in `cat /proc/cmdline` ; do
|
---|
32 | echo $i | grep -qi ping= && ipcount=`echo $i | cut -d= -f2`
|
---|
33 | echo $i | grep -qi ipconf= && ipconf=`echo $i | cut -d= -f2`
|
---|
34 | echo $i | grep -qi nfsmount= && export nfsmount=`echo $i | cut -d= -f2`
|
---|
35 | echo $i | grep -qi prefix= && export imgname=`echo $i | cut -d= -f2`
|
---|
36 | echo $i | grep -qi nfspath= && export dirimg=`echo $i | cut -d= -f2`
|
---|
37 | echo $i | grep -qi script= && script=`echo $i | cut -d= -f2`
|
---|
38 | done
|
---|
39 |
|
---|
40 | if [ "$ipdev" != "" ] || [ "$ipconf" != "" ]; then
|
---|
41 | # Network configuration stored during archive
|
---|
42 | # or on cmdline so network wanted => starting it
|
---|
43 | LogIt "Starting Network..."
|
---|
44 |
|
---|
45 | # Activate loobback
|
---|
46 | ifconfig lo 127.0.0.1
|
---|
47 |
|
---|
48 | echo "$ipconf" | grep -q "dhcp"
|
---|
49 | if [ $? -eq 0 ]; then
|
---|
50 | ipdev=`echo $ipconf | cut -d: -f1`
|
---|
51 | LogIt "Making DHCP request on $ipdev"
|
---|
52 | udhcpc -i $ipdev
|
---|
53 | else
|
---|
54 | if [ "$ipconf" != "" ]; then
|
---|
55 | ipdev=`echo $ipconf | cut -d: -f1`
|
---|
56 | ipaddress=`echo $ipconf | cut -d: -f2`
|
---|
57 | ipnetmask=`echo $ipconf | cut -d: -f3`
|
---|
58 | ipbroadcast=`echo $ipconf | cut -d: -f4`
|
---|
59 | ipgateway=`echo $ipconf | cut -d: -f5`
|
---|
60 | fi
|
---|
61 | LogIt "Configuring $ipdev statically ($ipaddress/$ipnetmask)"
|
---|
62 | ifconfig $ipdev $ipaddress netmask $ipnetmask broadcast $ipbroadcast
|
---|
63 | route add default gw $ipgateway
|
---|
64 | fi
|
---|
65 |
|
---|
66 | # ping server helps waking interface up
|
---|
67 | LogIt "Pinging NFS server..."
|
---|
68 | nfs_server_ipaddr=`echo $nfsmount | cut -d: -f1`
|
---|
69 | ping -c $ipcount $nfs_server_ipaddr
|
---|
70 |
|
---|
71 | # Finally mounts the NFS share
|
---|
72 | LogIt "Mounting NFS share ($nfsmount) on /tmp/isodir..."
|
---|
73 | touch /etc/mtab
|
---|
74 | mount -t nfs -o nolock,ro $nfsmount /tmp/isodir
|
---|
75 |
|
---|
76 | LogIt "Mounting NFS image ${imgname}-1.iso in $dirimg on /mnt/cdrom in loopback"
|
---|
77 | mount -o ro,loop -t iso9660 /tmp/isodir/$dirimg/${imgname}-1.iso /mnt/cdrom
|
---|
78 |
|
---|
79 | # Save the script on the NFS share locally
|
---|
80 | if [ "`echo $script | grep -E '^/tmp/isodir'`" ]; then
|
---|
81 | cp $script /tmp
|
---|
82 | LogIt "Copying $script under /tmp"
|
---|
83 | fi
|
---|
84 | fi
|
---|