From 5baf467a505dbab7572debd823ce0cd7b21b2a0c Mon Sep 17 00:00:00 2001 From: zhaoertao Date: Fri, 7 Dec 2012 06:47:44 +0000 Subject: [PATCH] reventlog supporting Firebird through CMM git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.7@14580 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/blade.pm | 11 +++++++---- xCAT-server/lib/xcat/plugins/fsp.pm | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/blade.pm b/xCAT-server/lib/xcat/plugins/blade.pm index c79804b27..40b30ed02 100644 --- a/xCAT-server/lib/xcat/plugins/blade.pm +++ b/xCAT-server/lib/xcat/plugins/blade.pm @@ -59,7 +59,7 @@ sub handled_commands { rspreset => 'nodehm:mgt', rspconfig => 'nodehm:mgt=blade|fsp', # Get into blade.pm for rspconfig if mgt equals blade or fsp rbootseq => 'nodehm:mgt', - reventlog => 'nodehm:mgt', + reventlog => 'nodehm:mgt=blade|fsp', switchblade => 'nodehm:mgt', renergy => 'nodehm:mgt', lsflexnode => 'blade', @@ -400,16 +400,19 @@ sub eventlog { #Tried various optimizations, but MM seems not to do bulk-request my $text=$5; my $matchstring; if ($slot > 0) { - $matchstring=sprintf("BLADE_%02d",$slot); + #$matchstring=sprintf("BLADE_%02d",$slot); + $matchstring=sprintf("NODE_%02d",$slot); } else { - $matchstring="^(?!BLADE).*"; + #$matchstring="^(?!BLADE).*"; + $matchstring="^(?!NODE).*"; } if ($source =~ m/$matchstring$/i) { #MM guys changed their minds on capitalization $numentries++; unshift @output,"$sev:$date $time $text"; #unshift to get it in a sane order } else { foreach (@moreslots) { - $matchstring=sprintf("BLADE_%02d",$_); + #$matchstring=sprintf("BLADE_%02d",$_); + $matchstring=sprintf("NODE_%02d",$_); if ($source =~ m/$matchstring$/i) { #MM guys changed their minds on capitalization $numentries++; unshift @output,"$sev:$date $time $text"; #unshift to get it in a sane order diff --git a/xCAT-server/lib/xcat/plugins/fsp.pm b/xCAT-server/lib/xcat/plugins/fsp.pm index 6272df794..0f78abc0d 100644 --- a/xCAT-server/lib/xcat/plugins/fsp.pm +++ b/xCAT-server/lib/xcat/plugins/fsp.pm @@ -12,7 +12,7 @@ use xCAT_plugin::hmc; sub handled_commands { return { rpower => 'nodehm:power,mgt', - reventlog => 'nodehm:mgt', + #reventlog => 'nodehm:mgt', rspconfig => 'nodehm:mgt', mkhwconn => 'nodehm:mgt', rmhwconn => 'nodehm:mgt',