xcat-core/xCAT-nbroot/overlay/bin/restart
lissav 8a2cc81d53 fix spelling in message
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9009 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
2011-03-08 13:16:54 +00:00

39 lines
1.3 KiB
Plaintext
Executable File

# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
#Redhcp, do the xcat part again
FORCENICS=`cat /restart|awk '{print $2}'`
rm /restart
echo -n > /tmp/dhcpserver
if [ ! -z "$FORCENICS" ]; then
echo "Forcing down nics aside from $FORCENICS due to discoverynics setting"
kill `ps axf|grep udhcpc|egrep -v "$FORCENICS"|grep -v grep|awk '{print $1}'`
for nic in `ifconfig|grep HWaddr|awk '{print $1}'|egrep -v "$FORCENICS"`; do
ifconfig $nic down
done
fi
WAITING=1
while [ $WAITING -gt 0 ]; do
killall -12 udhcpc;killall -10 udhcpc
echo -n "Waiting 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
WAITING=0
if [ ! -z "$FORCENICS" ]; then
for nic in `ifconfig|grep HWaddr|awk '{print $1}'|egrep "$FORCENICS"`; do
if ! ifconfig $nic|grep "inet addr" > /dev/null; then
WAITING=1
fi
done
if [ $WAITING -gt 0 ]; then
echo -n "Not all of the nics $FORCENICS managed to acquire an address, retrying in 30 seconds..."
sleep 30
echo "now retrying"
fi
fi
done
echo "Done waiting"
/etc/init.d/S11stunnel #redo stunnel config
exec /etc/init.d/S99xcat.sh