From 2700af8b63fb84b75e4b3387ffa63447d4cee1b4 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Fri, 16 Sep 2011 19:15:58 +0000 Subject: [PATCH] Fix infinite loop on dhclient without link git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10537 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-nbroot2/dhclient-script | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/xCAT-nbroot2/dhclient-script b/xCAT-nbroot2/dhclient-script index a324647db..d72ac0206 100755 --- a/xCAT-nbroot2/dhclient-script +++ b/xCAT-nbroot2/dhclient-script @@ -2,8 +2,13 @@ PATH=/bin:/sbin:/usr/bin:/usr/sbin if [ $reason = "PREINIT" -o $reason = "PREINIT6" ]; then ip link set $interface up + tries=50 while ! (ip link show $interface|grep LOWER_UP > /dev/null 2>&1); do sleep 0.1 + if [ $tries = 0 ]; then + break + fi + tries=$((tries-1)) done elif [ $reason = "BOUND" ]; then if [ ! -z "$new_ip_address" -a ! -z "$new_subnet_mask" ]; then