178eb5bf76
- Add MASTER_SITE_LOCAL as a mirror - Add patches to correct GEOM status check PR: ports/129733 Submitted by: andriy.tovstik@gmail.com Reviewed by: Eygene Ryabinkin <rea-fbsd@codelabs.ru> (maintainer)
13 lines
420 B
Text
13 lines
420 B
Text
diff --git a/check_geom b/check_geom
|
|
index e35be05..e7c776c 100755
|
|
--- a/check_geom
|
|
+++ b/check_geom
|
|
@@ -92,7 +92,7 @@ if (($class eq "mirror" || $class eq "raid3") && $status =~ /COMPLETE/ ) {
|
|
$state = "OK";
|
|
}
|
|
|
|
-if ($class eq "stripe" || $class eq "concat" || $class eq "shsec" && $status =~ /UP/) {
|
|
+if (($class eq "stripe" || $class eq "concat" || $class eq "shsec") && $status =~ /UP/) {
|
|
$state = "OK";
|
|
}
|
|
|