????

Your IP : 216.73.216.174


Current Path : /lib/raider/Raider/Devices/
Upload File :
Current File : //lib/raider/Raider/Devices/3ware.pm

use strict;
use warnings;

package Raider::Devices::3ware;
use base qw( Raider::Devices );
use Raider::Base;

=head1 NAME

Raider::Devices::3ware - Return the controller data structure.

=head1 DESCRIPTION

Return the controller data structure.

=head1 USAGE

use Raider::Devices::3ware;
my $d3ware = Raider::Devices::3ware->new();

=head1 METHODS

=head2 get_cntlr_details()

Return the controller data structure.

=cut

sub get_cntlr_details {
  my $details_hash_ref = {
    CNTLR_LSPCI_FILE => "$Raider::Base::base_conf{etc_path}/device_id/3ware.json",
    OLD_CHKRAID => '/usr/local/bin/3warecheck.sh',
    PKG_NAME    => 'tw_cli',
    CLI_CMD      => 'tw_cli',
    CLI_PATH    => '/usr/local/bin/tw_cli',
  };
  return $details_hash_ref;
}


1;