Hello community, here is the log from the commit of package udhcp for openSUSE:Factory checked in at 2018-01-24 15:31:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/udhcp (Old) and /work/SRC/openSUSE:Factory/.udhcp.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "udhcp" Wed Jan 24 15:31:01 2018 rev:17 rq:568529 version:0.9.8 Changes: -------- --- /work/SRC/openSUSE:Factory/udhcp/udhcp.changes 2016-01-23 01:16:46.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.udhcp.new/udhcp.changes 2018-01-24 15:31:04.784747632 +0100 @@ -1,0 +2,5 @@ +Sat Jan 20 22:15:08 UTC 2018 - [email protected] + +- ifconfig_path.patch - adjust absolute path to ifconfig + +------------------------------------------------------------------- New: ---- ifconfig_path.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ udhcp.spec ++++++ --- /var/tmp/diff_new_pack.OnRXhH/_old 2018-01-24 15:31:05.780701052 +0100 +++ /var/tmp/diff_new_pack.OnRXhH/_new 2018-01-24 15:31:05.784700865 +0100 @@ -1,7 +1,7 @@ # # spec file for package udhcp # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -30,6 +30,7 @@ Patch3: %{name}-update-scripts.patch # PATCH-FIX-UPSTREAM: do not strip binaries (bnc#890844) Patch4: udhcp-do-not-strip.patch +Patch5: ifconfig_path.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -43,6 +44,7 @@ %patch2 -p1 %patch3 -p1 %patch4 -p1 +%patch5 -p1 %build export CFLAGS="%{optflags} -fno-strict-aliasing" ++++++ ifconfig_path.patch ++++++ Index: udhcp-0.9.8/samples/sample.bound =================================================================== --- udhcp-0.9.8.orig/samples/sample.bound +++ udhcp-0.9.8/samples/sample.bound @@ -6,7 +6,7 @@ RESOLV_CONF="/etc/resolv.conf" [ -n "$broadcast" ] && BROADCAST="broadcast $broadcast" [ -n "$subnet" ] && NETMASK="netmask $subnet" -/sbin/ifconfig $interface $ip $BROADCAST $NETMASK +/usr/bin/ifconfig $interface $ip $BROADCAST $NETMASK if [ -n "$router" ] then Index: udhcp-0.9.8/samples/sample.deconfig =================================================================== --- udhcp-0.9.8.orig/samples/sample.deconfig +++ udhcp-0.9.8/samples/sample.deconfig @@ -1,4 +1,4 @@ #!/bin/sh # Sample udhcpc deconfig script -/sbin/ifconfig $interface 0.0.0.0 +/usr/bin/ifconfig $interface 0.0.0.0 Index: udhcp-0.9.8/samples/sample.renew =================================================================== --- udhcp-0.9.8.orig/samples/sample.renew +++ udhcp-0.9.8/samples/sample.renew @@ -6,7 +6,7 @@ RESOLV_CONF="/etc/udhcpc/resolv.conf" [ -n "$broadcast" ] && BROADCAST="broadcast $broadcast" [ -n "$subnet" ] && NETMASK="netmask $subnet" -/sbin/ifconfig $interface $ip $BROADCAST $NETMASK +/usr/bin/ifconfig $interface $ip $BROADCAST $NETMASK if [ -n "$router" ] then Index: udhcp-0.9.8/samples/simple.script =================================================================== --- udhcp-0.9.8.orig/samples/simple.script +++ udhcp-0.9.8/samples/simple.script @@ -10,11 +10,11 @@ RESOLV_CONF="/etc/resolv.conf" case "$1" in deconfig) - /sbin/ifconfig $interface 0.0.0.0 + /usr/bin/ifconfig $interface 0.0.0.0 ;; renew|bound) - /sbin/ifconfig $interface $ip $BROADCAST $NETMASK + /usr/bin/ifconfig $interface $ip $BROADCAST $NETMASK if [ -n "$router" ] ; then echo "deleting routers"
