corrected typo for gpfs-filesystem.

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8510 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
sjing 2010-12-27 01:40:10 +00:00
parent 2455948956
commit 2ed6bdc2dc
2 changed files with 4 additions and 4 deletions

View File

@ -89,10 +89,10 @@ while (1)
}
# send message to xcatd
my $gpfsf = "hpcbootstatus gfsp-filesystem=$new";
my $gpfsf = "hpcbootstatus gpfs-filesystem=$new";
if (&updateflag($master,$gpfsf) != 0)
{
print "HPCbootstatus.aix: Failed to report $gpfsq to xcatd on $master!\n";
print "HPCbootstatus.aix: Failed to report $gpfsf to xcatd on $master!\n";
}
$count++;
}

View File

@ -61,8 +61,8 @@ while [ true ]; do
fs=`/bin/mount |grep "type gpfs"|awk '{print $3}'|tr '\n' '!'`
if [ "$fs" != "" ]; then
# Sent message to xcatd
updateflag.awk $MASTER 3002 "hpcbootstatus gfsp-filesystem=$fs"
echo "HPCbootstatus.linux: Reporting gfsp-filesystem=$fs to xcatd on $MASTER!"
updateflag.awk $MASTER 3002 "hpcbootstatus gpfs-filesystem=$fs"
echo "HPCbootstatus.linux: Reporting gpfs-filesystem=$fs to xcatd on $MASTER!"
let COUNT=$COUNT+1
fi