From 508af695e9bde17cf6a0a0006061a7f10f8eb3a1 Mon Sep 17 00:00:00 2001 From: vallard Date: Thu, 6 May 2010 17:47:07 +0000 Subject: [PATCH] removed noderange to be backwards compatible git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@5994 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- .../share/xcat/netboot/add-on/statelite/rc.statelite | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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 ff1b5284f..12b45e0f3 100755 --- a/xCAT-server/share/xcat/netboot/add-on/statelite/rc.statelite +++ b/xCAT-server/share/xcat/netboot/add-on/statelite/rc.statelite @@ -61,7 +61,7 @@ GetSyncInfo () { fi # request the list of files from xCAT: - xCATCmd $XCATSERVER litefile $hn\ + xCATCmd $XCATSERVER litefile \ | sed -e 's/<[^>]*>//g' \ | egrep -v '^ *$' \ | sed -e 's/^ *//' \ @@ -71,7 +71,7 @@ GetSyncInfo () { # files will now be inside /.snapshot/tmpfs/synclist in the form: # options path - xCATCmd $XCATSERVER litetree $hn\ + xCATCmd $XCATSERVER litetree \ | sed -e 's/<[^>]*>//g' \ | egrep -v '^ *$' \ | sed -e 's/^ *//' \ @@ -82,8 +82,7 @@ GetSyncInfo () { xCATCmd () { # $1 is the xCAT server # $2 is the command -# $3 is the noderange - echo "\n${2}\n${3}\n" | LD_LIBRARY_PATH=/sysroot/lib64:/sysroot/usr/lib64 /sysroot/usr/bin/openssl s_client -quiet -connect ${1} -rand /bin/nice 2>/dev/null + echo "\n${2}\n" | LD_LIBRARY_PATH=/sysroot/lib64:/sysroot/usr/lib64 /sysroot/usr/bin/openssl s_client -quiet -connect ${1} -rand /bin/nice 2>/dev/null }