Skip to content

Commit

Permalink
Merge pull request #70 from ebruening/master
Browse files Browse the repository at this point in the history
Update check_cdot_multipath.pl
  • Loading branch information
aleex42 authored Sep 22, 2024
2 parents 77afaf9 + 19a4b21 commit e39e067
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion check_cdot_multipath.pl
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,13 @@ sub Error {

my $new_must_paths;

# Internal disks i.e. A700s have 8 paths, A800 (psm3e) have 2 paths
# Internal disks i.e. A700s have 8 paths, A800 (psm3e) and A/C250 (psm8e) have two paths
if($iom_type eq "iom12f"){
$new_must_paths = "8";
} elsif ($iom_type eq "psm3e"){
$new_must_paths = "2";
} elsif ($iom_type eq "psm8e"){
$new_must_paths = "2";
} else {
$new_must_paths = $must_paths;
}
Expand Down

0 comments on commit e39e067

Please sign in to comment.