diff --git a/xCAT/postscripts/HPCbootstatus.aix b/xCAT/postscripts/HPCbootstatus.aix index 59378fd13..6b4ddc3d5 100644 --- a/xCAT/postscripts/HPCbootstatus.aix +++ b/xCAT/postscripts/HPCbootstatus.aix @@ -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++; } diff --git a/xCAT/postscripts/HPCbootstatus.linux b/xCAT/postscripts/HPCbootstatus.linux index a724aced1..95fe552b0 100644 --- a/xCAT/postscripts/HPCbootstatus.linux +++ b/xCAT/postscripts/HPCbootstatus.linux @@ -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