-Use a rebootnode script that releases DHCP leases when exiting nbfs (for floating nodes)

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@6492 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2010-06-16 20:15:00 +00:00
parent 9c58ca3672
commit 9e03e9e3fe
2 changed files with 8 additions and 3 deletions

View File

@ -137,7 +137,7 @@ while :; do
while ! nextdestiny ; do
echo "Retrying next destiny..."
done
reboot -f
/bin/rebootnode
fi
if [ "$DEST" == "runcmd" ]; then
while ! nextdestiny ; do
@ -146,7 +146,7 @@ while :; do
$TARG
fi
if [ "$DESTINY" == "install" -o "$DESTINY" == "netboot" ]; then
reboot -f #If script is here, kexec failed, reboot in case it wasn't a linux kernel and let the boot loader handle it instead
/bin/rebootnode #If script is here, kexec failed, reboot in case it wasn't a linux kernel and let the boot loader handle it instead
IMGSERVER=`grep imgserver /tmp/destiny | awk -F'>' '{print $2}'|awk -F'<' '{print $1}'`
INITRD=`grep initrd /tmp/destiny | awk -F'>' '{print $2}'|awk -F'<' '{print $1}'`
KERNEL=`grep kernel /tmp/destiny | awk -F'>' '{print $2}'|awk -F'<' '{print $1}'`
@ -166,7 +166,7 @@ while :; do
rmmod $mod
done
#kexec -f --append="$KCMD" --initrd=/tmp/initrd /tmp/kernel
reboot -f #If script is here, kexec failed, reboot in case it wasn't a linux kernel and let the boot loader handle it instead
/bin/rebootnode #If script is here, kexec failed, reboot in case it wasn't a linux kernel and let the boot loader handle it instead
fi
if [ "$DEST" == "runimage" ]; then
mkdir /tmp/`basename $TARG`

View File

@ -0,0 +1,5 @@
for udhcpc in `ps axf|grep -i udhcpc|grep -v grep|awk '{print $1}'`; do
kill -USR2 $udhcpc
done
reboot -f