summaryrefslogtreecommitdiffstats
path: root/rescue/tree/ka/setup_network.sh
blob: 89ddd2c919337df989800e92b20c40327c18d039 (plain)
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
62
63
64
65
66
67
68
69
70
#!/bin/bash

# this script setups the network on the cloned system
# puts a correct hostname
# changes the IP if static -- for only ONE device (dunno what will happen with multiple NICs)
# needs the file /ka/hostnames


curdir=`pwd`

ip=`/sbin/ifconfig | grep -v 127.0.0.1 | grep "inet addr" | sed 's/^.*inet addr:\([^ ]*\) .*$/\1/g'`
ip=`echo $ip | tr . _`
echo -n "Setting hostname: "
hostname $ip


# current hostname has been set up in rc.sysinit
ip=`hostname | tr _ .`

echo My IP is $ip
cd /ka

# the sed command will remove unwanted spaces
if test -f hostnames ; then
	myname=`cat hostnames | sed -e 's/  / /g' -e 's/ *$//' | grep " $ip\$" | cut -d ' ' -f 1`
	nbfound=`echo "$myname" | wc -l`
fi

if [ $nbfound -ne 1 ] || [ -z "$myname" ]; then
	# try DNS
	echo IP not found in /ka/hostnames, Trying DNS
	myname=`host $ip | grep "domain name"  | cut -d " " -f 5 | sed 's/\.$//g' `
#	myname=`nslookup $ip | grep ^Name: | tail -n +2 | head -n 1 | sed 's/Name: *//'`
fi

if [ -z "$myname" ]; then
	myname=`hostname`
	echo WARNING:HOSTNAME NOT FOUND
fi

echo My hostname is $myname

# change hostname in the network file
old=/mnt/disk/etc/sysconfig/network.beforeka
new=/mnt/disk/etc/sysconfig/network

rm -f "$old"
mv "$new" "$old"
cat "$old" | grep -v ^HOSTNAME= > "$new"
echo "HOSTNAME=$myname" >> "$new"

# assume first NIC is the gatewaydev (right ? wrong ?)
#firstnic=`grep ^GATEWAYDEV "$new" | cut -d = -f 2 | tr -d \"`
#echo GATEWAYDEV=$firstnic

# see if IP has to be written
#proto=`grep ^BOOTPROTO /mnt/disk/etc/sysconfig/network-scripts/ifcfg-$firstnic | cut -d = -f 2 | tr -d \"`
#echo PROTO=$proto
#if [ "$proto" != "dhcp" ]; then
#	# proto is static, write the new IP in the config file
#	old=/mnt/disk/etc/sysconfig/network-scripts/ifcfg-$firstnic.beforeka
#	new=/mnt/disk/etc/sysconfig/network-scripts/ifcfg-$firstnic
#
#	rm -f "$old"
#	mv "$new" "$old"
#	cat "$old" | grep -v ^IPADDR= > "$new"
#	echo IPADDR=$ip >> "$new"
#fi

cd $curdir