From 7da34b6fc23c6d137cada0f297bec0059bd66230 Mon Sep 17 00:00:00 2001 From: daniceexi Date: Tue, 8 Jan 2013 06:25:22 +0000 Subject: [PATCH] Make sure the hostname has been set before configure the statelite git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14794 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- .../share/xcat/netboot/add-on/statelite/rc.statelite | 11 +++++++++++ .../netboot/add-on/statelite/rc.statelite.ppc.redhat | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/xCAT-server/share/xcat/netboot/add-on/statelite/rc.statelite b/xCAT-server/share/xcat/netboot/add-on/statelite/rc.statelite index e9993198e..5a0e8f7dd 100755 --- a/xCAT-server/share/xcat/netboot/add-on/statelite/rc.statelite +++ b/xCAT-server/share/xcat/netboot/add-on/statelite/rc.statelite @@ -22,6 +22,17 @@ declare -a CLIST declare -a PLIST ME=`hostname -s` +MAX=30 +TRIES=1 +while [ x$ME = x ];do + TRIES=$[ $TRIES+1 ] + if [ $TRIES -eq $MAX ]; then + echo "Can NOT get the hostname of the node. System will fail to enable the persistent files.">/dev/console + break + fi + sleep 1 + ME=`hostname -s` +done PERSISTENT="${MNTDIR}/$SL/persistent/$ME" diff --git a/xCAT-server/share/xcat/netboot/add-on/statelite/rc.statelite.ppc.redhat b/xCAT-server/share/xcat/netboot/add-on/statelite/rc.statelite.ppc.redhat index f52b1f315..36222df89 100755 --- a/xCAT-server/share/xcat/netboot/add-on/statelite/rc.statelite.ppc.redhat +++ b/xCAT-server/share/xcat/netboot/add-on/statelite/rc.statelite.ppc.redhat @@ -22,6 +22,17 @@ declare -a CLIST declare -a PLIST ME=`hostname` +MAX=30 +TRIES=1 +while [ x$ME = x ];do + TRIES=$[ $TRIES+1 ] + if [ $TRIES -eq $MAX ]; then + echo "Can NOT get the hostname of the node. System will fail to enable the persistent files.">/dev/console + break + fi + sleep 1 + ME=`hostname -s` +done PERSISTENT="${MNTDIR}/$SL/persistent/$ME"