????
| Current Path : /usr/lib/raider/Raider/Devices/ |
| Current File : //usr/lib/raider/Raider/Devices/Adaptec.pm |
use strict;
use warnings;
package Raider::Devices::Adaptec;
use base qw( Raider::Devices );
use Raider::Base;
=head1 NAME
Raider::Devices::Adaptec - Return the controller data structure.
=head1 DESCRIPTION
Return the controller data structure.
=head1 USAGE
use Raider::Devices::Adaptec;
my $dAdaptec = Raider::Devices::Adaptec->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/Adaptec.json",
OLD_CHKRAID => '/usr/local/bin/checkadaptec.sh',
PKG_NAME => 'raider-arcconf-22665',
CLI_CMD => 'arcconf',
CLI_PATH => '/usr/StorMan/arcconf',
};
}
1;