removed ISRDown condition and ISR_status sensor from RMC monitoring

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9183 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
linggao 2011-03-30 14:08:34 +00:00
parent 061812e66b
commit d02e4e1b73
2 changed files with 0 additions and 30 deletions

View File

@ -1,15 +0,0 @@
#!/usr/bin/perl
$RES::Condition{'ISR_down'} = {
Name => q(ISR_down),
ResourceClass => q(IBM.Sensor),
EventExpression => q(SD.Uint32 != SD@P.Uint32 && SD.Int32>0),
RearmExpression => q(SD.Uint32 != SD@P.Uint32 && SD.Int32<0),
EventDescription => q(ISR is unavailable for use due to severe hardware error.),
RearmDescription => q(ISR is back to normal.),
SelectionString => q(Name="ISR_status"),
ManagementScope => q(1),
Severity => q(1),
NoToggleExprFlag => q(1),
};
1;

View File

@ -1,15 +0,0 @@
#!/usr/bin/perl
BEGIN
{
$::XCATROOT = $ENV{'XCATROOT'} ? $ENV{'XCATROOT'} : '/opt/xcat';
}
$RES::Sensor{'ISR_status'} = {
Name => q(ISR_status),
Command => "/tmp/fake",
UserName => q(root),
RefreshInterval => q(0),
ControlFlags => q(0), #change to 8 for rsct 2.5.3.0 and greater
Description => q(This sensor is refreshed when an ISR is unavailable for use due to severe hardware error. It is also refreshed when ISR is back to normal.),
};
1;