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
14 lines
392 B
Plaintext
Executable File
14 lines
392 B
Plaintext
Executable File
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
#Redhcp, do the xcat part again
|
|
rm /restart
|
|
echo -n > /tmp/dhcpserver
|
|
killall -12 udhcpc;killall -10 udhcpc
|
|
echo -n "Wating 10 seconds for DHCP changes to take effect "
|
|
for i in 1 2 3 4 5 6 7 8 9 10; do
|
|
sleep 1
|
|
echo -n .
|
|
done
|
|
echo "Done waiting"
|
|
/etc/init.d/S11stunnel #redo stunnel config
|
|
exec /etc/init.d/S99xcat.sh
|