for defect 3031489,

expr is not installed on redhat6 by default, so I removed expr form statelite script


git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@6789 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
mxi1 2010-07-19 08:31:42 +00:00
parent 4fabfcb8a9
commit ec11964907
2 changed files with 10 additions and 10 deletions

View File

@ -113,8 +113,8 @@ MountTrees () {
break
#exit 1
fi
TRIES=`expr $TRIES + 1`
S=`expr $RANDOM % 20`
TRIES=$[ $TRIES+1 ]
S=$[ $RANDOM%20 ]
echo "Can't mount $SERV:$MNT... Sleeping $S seconds then trying again" >/dev/console
sleep $S
done
@ -139,7 +139,7 @@ ResolveLinks () {
while read type path
do
ELIST[$i]="$type $path";
i=`expr $i + 1`;
i=$[ $i+1 ];
done
num=${#ELIST[@]}
@ -162,10 +162,10 @@ ResolveLinks () {
if [ "$efound" = "1" ]; then
# put it into CLIST
CLIST[`expr ${#CLIST[@]}`]=${ELIST[$i]}
CLIST[$[ ${#CLIST[@]} ]]=${ELIST[$i]}
else
# put it into PLIST
PLIST[`expr ${#PLIST[@]}`]=${ELIST[$i]}
PLIST[$[ ${#PLIST[@]} ]]=${ELIST[$i]}
fi
done

View File

@ -113,8 +113,8 @@ MountTrees () {
break
#exit 1
fi
TRIES=`expr $TRIES + 1`
S=`expr $RANDOM % 20`
TRIES=$[ $TRIES + 1 ]
S=$[ $RANDOM % 20 ]
echo "Can't mount $SERV:$MNT... Sleeping $S seconds then trying again" >/dev/console
sleep $S
done
@ -139,7 +139,7 @@ ResolveLinks () {
while read type path
do
ELIST[$i]="$type $path";
i=`expr $i + 1`;
i=$[ $i + 1 ];
done
num=${#ELIST[@]}
@ -162,10 +162,10 @@ ResolveLinks () {
if [ "$efound" = "1" ]; then
# put it into CLIST
CLIST[`expr ${#CLIST[@]}`]=${ELIST[$i]}
CLIST[$[ ${#CLIST[@]} ]]=${ELIST[$i]}
else
# put it into PLIST
PLIST[`expr ${#PLIST[@]}`]=${ELIST[$i]}
PLIST[$[ ${#PLIST[@]} ]]=${ELIST[$i]}
fi
done