blob: dd1f838952b08f10bac296f4985058627bca9fa3 (
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
|
#!/bin/sh
cd /etc/sysconfig/network-scripts
CONFIG=$1
. network-functions
source_config
DEVICETYPE=`echo $DEVICE | sed "s/[0-9]*$//"`
REALDEVICE=`echo $DEVICE | sed 's/:.*//g'`
if echo $DEVICE | grep -q ':' ; then
ISALIAS=yes
else
ISALIAS=no
fi
/etc/sysconfig/network-scripts/ifup-routes ${DEVICE}
if [ "$ISALIAS" = no ] ; then
allow_null_glob_expansion=foo
for alias in /etc/sysconfig/network-scripts/ifcfg-${DEVICE}:* ; do
/etc/sysconfig/network-scripts/ifup $alias
done
unset allow_null_glob_expansion
fi
if [ `hostname` = '(none)' -o `hostname` = localhost -a ${DEVICE} != lo ]; then
IPADDR=`ifconfig ${DEVICE} | grep 'inet addr' | awk -F: '{ print $2 } ' | awk '{ print $1 }'`
host=`host ${IPADDR} | grep Name: | awk '{ print $2 }'`
if [ -n "$host" ]; then
echo "$host" > /etc/HOSTNAME
hostname $host
fi
fi
# Notify programs that have requested notification
( cd /var/run/netreport || exit
for i in * ; do
[ -f $i ] && \
kill -SIGIO $i >/dev/null 2>&1 || \
rm -f $i >/dev/null 2>&1
done
)
exit 0
|