rpms/dhcp/FC-3 dhcp-3.0.1-bz181482.patch,NONE,1.1

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Tue Feb 14 18:49:59 UTC 2006


Author: jvdias

Update of /cvs/dist/rpms/dhcp/FC-3
In directory cvs.devel.redhat.com:/tmp/cvs-serv25837

Added Files:
	dhcp-3.0.1-bz181482.patch 
Log Message:
fix bug 181482: resolv.conf not updated on RENEW

dhcp-3.0.1-bz181482.patch:
 linux |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

--- NEW FILE dhcp-3.0.1-bz181482.patch ---
--- dhcp-3.0.1/client/scripts/linux.bz181482	2006-02-14 13:44:06.000000000 -0500
+++ dhcp-3.0.1/client/scripts/linux	2006-02-14 13:45:40.000000000 -0500
@@ -32,10 +32,10 @@
       return 
   fi
 
-  if [ x$reason == xRENEW ]; then 
-      if [ "$new_domain_name" == "$old_domain_name" ] && [ "$new_domain_servers" == "$old_domain_servers" ]; then
-	  return
-      fi
+  if [ x$reason == xRENEW ] &&
+     [ "$new_domain_name" == "$old_domain_name" ] &&
+     [ "$new_domain_name_servers" == "$old_domain_name_servers" ]; then
+      return;
   fi
 
   if [ -n "$new_domain_name" ] || [ -n "$new_domain_name_servers" ]; then




More information about the fedora-cvs-commits mailing list