2c703ff14b
-Eliminate a lot of output (debug and expected error messages) -Properly failover to all dhcpservers for getdestiny, nextdestiny, and getipmi -Randomly vary some sleep intervals to self-segregate nodes in time to take it easy on xCATd -Enhance x86 architecture detection to differentiate x86_64 and x86 with an x86 kernel -Only down nics during discovery if the broadcast domains conflict git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1012 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
11 lines
228 B
Bash
Executable File
11 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
if ! nextdestiny.awk 301 > /dev/null 2>&1 ; then
|
|
let i=400
|
|
for srv in `cat /tmp/dhcpserver`; do
|
|
if nextdestiny.awk $i > /dev/null 2>&1 ; then
|
|
exit
|
|
fi
|
|
let i=i+1
|
|
done
|
|
fi
|