https://bugzilla.novell.com/show_bug.cgi?id=869761 https://bugzilla.novell.com/show_bug.cgi?id=869761#c0 Summary: sysconfig-network-0.81.5-22.1 ifup script broken for ifplugd interfaces Classification: openSUSE Product: openSUSE 13.1 Version: Final Platform: Other OS/Version: openSUSE 13.1 Status: NEW Severity: Normal Priority: P5 - None Component: Basesystem AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: kuenne@rentec.com QAContact: qa-bugs@suse.de Found By: --- Blocker: --- User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:27.0) Gecko/20100101 Firefox/27.0 The latest version of sysconfig-network (0.81.5-22.1) contains a change to /sbin/ifup which breaks the start of ifplugd-controlled network interfaces. With: BOOTPROTO='dhcp4' STARTMODE='ifplugd' the dhcpcd is not started and the interface never gets an address. The following small patch fixes it: --- scripts/ifup.orig 2014-03-20 15:23:52.885488592 -0400 +++ scripts/ifup 2014-03-20 15:24:37.697152957 -0400 @@ -303,7 +303,7 @@ SYSTEMD_REDIRECT=no ;; esac -if test "$PPID" -eq 1 -o "$DHCP" = "yes" -o "$CONTROL_IFPLUGD" = "yes" ; then +if test "$PPID" -eq 1 -o "$DHCP" = "yes" -o "$CONTROL_IFPLUGD" = "no" ; then SYSTEMD_REDIRECT=no fi case $SCRIPTNAME in Reproducible: Always Steps to Reproduce: 1.start the interface with "ifup ifacename" 2. 3. Actual Results: no dhcp is started, interface has no address Expected Results: dhcp should start and interface should get an address -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.