From 12610abaedd40b5b9802bf12d62e3a9b02c9644e Mon Sep 17 00:00:00 2001 From: Bin Xu Date: Mon, 8 May 2017 15:12:02 +0800 Subject: [PATCH] Minor amend fix for 2794 - correct the wrong plugin name in trace log (#2999) --- xCAT-server/lib/xcat/plugins/grub2.pm | 2 +- xCAT-server/lib/xcat/plugins/petitboot.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/grub2.pm b/xCAT-server/lib/xcat/plugins/grub2.pm index 5593dcdee..e465db55b 100644 --- a/xCAT-server/lib/xcat/plugins/grub2.pm +++ b/xCAT-server/lib/xcat/plugins/grub2.pm @@ -515,7 +515,7 @@ sub process_request { @nodes = (); my @hostinfo = xCAT::NetworkUtils->determinehostname(); my $cur_xmaster = pop @hostinfo; - xCAT::MsgUtils->trace(0, "d", "xnba: running on $cur_xmaster"); + xCAT::MsgUtils->trace(0, "d", "grub2: running on $cur_xmaster"); # Get current server managed node list my $sn_hash = xCAT::ServiceNodeUtils->getSNformattedhash(\@rnodes, "xcat", "MN"); diff --git a/xCAT-server/lib/xcat/plugins/petitboot.pm b/xCAT-server/lib/xcat/plugins/petitboot.pm index ffa3b7842..f809b6527 100644 --- a/xCAT-server/lib/xcat/plugins/petitboot.pm +++ b/xCAT-server/lib/xcat/plugins/petitboot.pm @@ -406,7 +406,7 @@ sub process_request { @nodes = (); my @hostinfo = xCAT::NetworkUtils->determinehostname(); my $cur_xmaster = pop @hostinfo; - xCAT::MsgUtils->trace(0, "d", "xnba: running on $cur_xmaster"); + xCAT::MsgUtils->trace(0, "d", "petitboot: running on $cur_xmaster"); # Get current server managed node list my $sn_hash = xCAT::ServiceNodeUtils->getSNformattedhash(\@rnodes, "xcat", "MN");