From 3aa724b5a4562d47af4fb770bdc6cf74795f0bbe Mon Sep 17 00:00:00 2001 From: zhaoertao Date: Thu, 6 Dec 2012 08:54:43 +0000 Subject: [PATCH] fix bug 3218: Support 'rbeacon' for Firebird blade git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14570 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/blade.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/blade.pm b/xCAT-server/lib/xcat/plugins/blade.pm index 3594e5eca..8edc2ff6c 100644 --- a/xCAT-server/lib/xcat/plugins/blade.pm +++ b/xCAT-server/lib/xcat/plugins/blade.pm @@ -59,7 +59,7 @@ sub handled_commands { getrvidparms => 'nodehm:mgt', rvitals => 'nodehm:mgt=blade|fsp', rinv => 'nodehm:mgt', - rbeacon => 'nodehm:mgt', + rbeacon => 'nodehm:mgt=blade|fsp', rspreset => 'nodehm:mgt', rspconfig => 'nodehm:mgt=blade|fsp', # Get into blade.pm for rspconfig if mgt equals blade or fsp rbootseq => 'nodehm:mgt', @@ -5324,7 +5324,7 @@ sub dompa { } # Only telnet commands unless ( @$args ) { - if($command ne "getmacs"){ + if(($command ne "getmacs") && ($command ne "rbeacon")){ return; } }