????
| Current Path : /usr/lib/raider/Raider/Devices/ |
| Current File : //usr/lib/raider/Raider/Devices/MegaraidSATA.pm |
use strict;
use warnings;
package Raider::Devices::MegaraidSATA;
use base qw( Raider::Devices );
use Raider::Base;
=head1 NAME
Raider::Devices::MegaraidSATA - Return the controller data structure.
=head1 DESCRIPTION
Return the controller data structure.
=head1 USAGE
use Raider::Devices::MegaraidSATA;
my $dMegaraidSATA = Raider::Devices::MegaraidSATA->new();
=head1 METHODS
=head2 get_cntlr_details()
Return the controller data structure.
=cut
sub get_cntlr_details {
return {
CNTLR_LSPCI_FILE => "$Raider::Base::base_conf{etc_path}/device_id/MegaraidSATA.json",
OLD_CHKRAID => '/usr/local/bin/checkmegaraid.sh',
PKG_NAME => 'megaraid-lw',
CLI_CMD => 'megarc',
CLI_PATH => '/usr/local/bin/megarc',
};
}
1;