diff options
author | Bill Nottingham <notting@redhat.com> | 2002-02-07 03:56:58 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2002-02-07 03:56:58 +0000 |
commit | b9c251beba5b0c7afe64f89caaecaab36b40d573 (patch) | |
tree | 7578e9b9685f134c8bdfe97fed8b22a563028dda /sysconfig/network-scripts | |
parent | 25608554d47c46121935732ab7bbfaeba30457cf (diff) | |
download | initscripts-b9c251beba5b0c7afe64f89caaecaab36b40d573.tar initscripts-b9c251beba5b0c7afe64f89caaecaab36b40d573.tar.gz initscripts-b9c251beba5b0c7afe64f89caaecaab36b40d573.tar.bz2 initscripts-b9c251beba5b0c7afe64f89caaecaab36b40d573.tar.xz initscripts-b9c251beba5b0c7afe64f89caaecaab36b40d573.zip |
fix invocation of need_hostname (#58946)
Diffstat (limited to 'sysconfig/network-scripts')
-rwxr-xr-x | sysconfig/network-scripts/ifup-post | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sysconfig/network-scripts/ifup-post b/sysconfig/network-scripts/ifup-post index 370ad7e1..64d5d3f0 100755 --- a/sysconfig/network-scripts/ifup-post +++ b/sysconfig/network-scripts/ifup-post @@ -99,15 +99,16 @@ fi # don't set hostname on ppp/slip connections if [ "$2" = "boot" -a \ - need_hostname -a \ "${DEVICE}" != lo -a \ "${DEVICETYPE}" != "ppp" -a \ "${DEVICETYPE}" != "slip" ]; then - IPADDR=`LANG= LC_ALL= ifconfig ${DEVICE} | grep 'inet addr' | - awk -F: '{ print $2 } ' | awk '{ print $1 }'` - eval `/bin/ipcalc --silent --hostname ${IPADDR}` - if [ "$?" = "0" ]; then - set_hostname $HOSTNAME + if need_hostname; then + IPADDR=`LANG= LC_ALL= ifconfig ${DEVICE} | grep 'inet addr' | + awk -F: '{ print $2 } ' | awk '{ print $1 }'` + eval `/bin/ipcalc --silent --hostname ${IPADDR}` + if [ "$?" = "0" ]; then + set_hostname $HOSTNAME + fi fi fi |