Increase timeout for nic waiting to 10 minutes instead of 30 seconds

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@13259 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2012-07-09 19:23:23 +00:00
parent 397d807fb6
commit e6c05ea003

View File

@ -1,7 +1,7 @@
if [ ! -z "$BOOTIF" ]; then
BOOTIF=`echo $BOOTIF|sed -e s/01-// -e s/-/:/g`
echo -n "Waiting for device with address $BOOTIF to appear.."
gripeiter=300
gripeiter=6000
while [ -z "$bootnic" ]; do
bootnic=`ip link show|grep -B1 $BOOTIF|grep mtu|awk '{print $2}'|sed -e 's/:$//'`
sleep 0.1