Bug 230157 - initscripts fail to change hostname from localhost.localdomain
Summary: initscripts fail to change hostname from localhost.localdomain
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: initscripts
Version: rawhide
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Bill Nottingham
QA Contact: Brock Organ
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2007-02-26 22:15 UTC by Michal Jaegermann
Modified: 2014-03-17 03:05 UTC (History)
1 user (show)

Fixed In Version: 8.52-1
Clone Of:
Environment:
Last Closed: 2007-04-16 22:44:37 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)
change to make ifup-post to work again (597 bytes, patch)
2007-02-26 22:15 UTC, Michal Jaegermann
no flags Details | Diff

Description Michal Jaegermann 2007-02-26 22:15:24 UTC
Description of problem:

After recent initscripts update starting up a network failed to
rename a machine with a DHCP assigned address from 'localhost'.
The culprit turned out to be ifup-post.  It find address
by doing this:

 IPADDR=$(LANG=C ip -o -4 addr ls dev ${DEVICE} | awk '{ print $4 }')

If ${DEVICE} in question happen to have also some additional alias
addresses this returns all of these and makes a subsequnt call
to 'ipcalc' very unhappy.  A solution is to use only the first address
as reported by 'ip'.  A simple patch is attached.

BTW - earlier in 'ifup-post' there is the following line:

if [ "$PEERDNS" != "no" -o -n "$RESOLV_MODS" -a "$RESOLV_MODS" != "no" ]; then

Is this really what is supposed to be there or rather

if [ "$PEERDNS" != "no" ] || \
     [ -n "$RESOLV_MODS" -a "$RESOLV_MODS" != "no" ]; then

was really meant?  Quite possibly what is there is fine but a logic
is surely not so clear on the first look.

Version-Release number of selected component (if applicable):
initscripts-8.51-1

Comment 1 Michal Jaegermann 2007-02-26 22:15:24 UTC
Created attachment 148836 [details]
change to make ifup-post to work again

Comment 2 Bill Nottingham 2007-04-16 22:44:37 UTC
Added in CVS, will be in 8.52-1. Thanks!


Note You need to log in before you can comment on or make changes to this bug.