From 19a4b21a51b123a14c4c93d6399faf0954d2a0d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eric=20Br=C3=BCning?= <39557298+ebruening@users.noreply.github.com> Date: Mon, 16 Sep 2024 19:55:14 +0200 Subject: [PATCH] Update check_cdot_multipath.pl Added exception for a/c250 --- check_cdot_multipath.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/check_cdot_multipath.pl b/check_cdot_multipath.pl index 067dd81..4edbd50 100755 --- a/check_cdot_multipath.pl +++ b/check_cdot_multipath.pl @@ -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; }