From 54a18ea25de3965e7ae907c3238569eb01803bf1 Mon Sep 17 00:00:00 2001 From: Erik Troan Date: Tue, 10 Mar 1998 15:51:16 +0000 Subject: 1) added need_hostname and set_hostname functions 2) changed hostname lookup to use ipcalc --- sysconfig/network-scripts/ifup-post | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'sysconfig/network-scripts/ifup-post') diff --git a/sysconfig/network-scripts/ifup-post b/sysconfig/network-scripts/ifup-post index 6a57d866..35c9a6d2 100755 --- a/sysconfig/network-scripts/ifup-post +++ b/sysconfig/network-scripts/ifup-post @@ -5,6 +5,7 @@ cd /etc/sysconfig/network-scripts CONFIG=$1 . network-functions +need_hostname source_config DEVICETYPE=`echo $DEVICE | sed "s/[0-9]*$//"` @@ -25,13 +26,10 @@ if [ "$ISALIAS" = no ] ; then 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 +if [ -n "$NEEDHOSTNAME" -a ${DEVICE} != lo ]; then + IPADDR=`ifconfig ${DEVICE} | grep 'inet addr' | + awk -F: '{ print $2 } ' | awk '{ print $1 }'` + eval `/sbin/ipcalc --silent --hostname ${IPADDR}` && set_hostname $HOSTNAME fi # Notify programs that have requested notification -- cgit