Do not insist on being started as root, but use sudo to call megarc
[mirror/dsa-nagios.git] / dsa-nagios-checks / checks / dsa-check-raid-mpt
index 9f9dc52..3599c5e 100755 (executable)
@@ -32,7 +32,7 @@ unless (-e $MPT_STATUS) {
        exit $UNKNOWN;
 };
 
-my $command = "$MPT_STATUS -s";
+my $command = "sudo $MPT_STATUS -s";
 open (MPT, "$command|") or die ("Cannot run $command: $!\n");
 my @tw=<MPT>;
 close MPT;