From a60b0c597d9b4cc9e80e13ab47454c131a9199aa Mon Sep 17 00:00:00 2001 From: jjhua Date: Thu, 17 Jan 2013 09:31:00 +0000 Subject: [PATCH] fixed bug 3291. in Linux, if the precreatemypostscripts is not set or set to 0 in site table, it will get the mypostscript.nodename fistly. If not get it, use getpostscript.awk version2 to generate the mypostscript file named mypostscript.nodename.tmp, then get it git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14911 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/share/xcat/install/scripts/post.xcat | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xCAT-server/share/xcat/install/scripts/post.xcat b/xCAT-server/share/xcat/install/scripts/post.xcat index e5d2d962f..dd16fa716 100644 --- a/xCAT-server/share/xcat/install/scripts/post.xcat +++ b/xCAT-server/share/xcat/install/scripts/post.xcat @@ -51,10 +51,10 @@ do #/xcatpost/getpostscript.awk |sed -e 's/<[^>]*>//g'|egrep -v '^ *$'|sed -e 's/^ *//' > /xcatpost/mypostscript /xcatpost/getpostscript.awk version2 > /dev/null - wget -N --waitretry=10 --random-wait -T 60 http://$i$TFTPDIR/mypostscripts/mypostscript.$NODE -P /xcatpost 2>> /tmp/wget.log + wget -N --waitretry=10 --random-wait -T 60 http://$i$TFTPDIR/mypostscripts/mypostscript.$NODE.tmp -P /xcatpost 2>> /tmp/wget.log rc=$? if [ "$rc" = "0" ]; then - mv /xcatpost/mypostscript.$NODE /xcatpost/mypostscript + mv /xcatpost/mypostscript.$NODE.tmp /xcatpost/mypostscript fi MYCONT=`grep MASTER /xcatpost/mypostscript` @@ -71,8 +71,8 @@ do sleep $SLI #/xcatpost/getpostscript.awk |sed -e 's/<[^>]*>//g'|egrep -v '^ *$'|sed -e 's/^ *//' > /xcatpost/mypostscript /xcatpost/getpostscript.awk version2 > /dev/null - wget -N --waitretry=10 --random-wait -T 60 http://$i$TFTPDIR/mypostscripts/mypostscript.$NODE -P /xcatpost 2>> /tmp/wget.log - mv /xcatpost/mypostscript.$NODE /xcatpost/mypostscript + wget -N --waitretry=10 --random-wait -T 60 http://$i$TFTPDIR/mypostscripts/mypostscript.$NODE.tmp -P /xcatpost 2>> /tmp/wget.log + mv /xcatpost/mypostscript.$NODE.tmp /xcatpost/mypostscript MYCONT=`grep MASTER /xcatpost/mypostscript` done