diff --git a/backuppc_check.pl b/backuppc_check.pl index 5ee8eef..08135d4 100644 --- a/backuppc_check.pl +++ b/backuppc_check.pl @@ -85,7 +85,7 @@ print("Size Consistency : "); # TOO BIG ? my $toobig = "1"; -if ( $json->{new_size} > ($json->{new_size_q3} + $json->{new_size_q3} - $json->{new_size_q1}) * 1.5 && $json->{new_size} > $json->{new_size_avg} * 6 ) { +if ( $json->{new_size} > ($json->{new_size_q3} + $json->{new_size_q3} - $json->{new_size_q1}) * 1.5 or $json->{new_size} > $json->{new_size_avg} * 6 ) { $toobig = "1"; } else { @@ -94,7 +94,7 @@ else { # TOO SMALL ? my $toosmall = "1"; -if ( $json->{new_size} < ($json->{new_size_q1} - $json->{new_size_q3} - $json->{new_size_q1}) * 1.5 && $json->{new_size} < $json->{new_size_avg} / 3 ) { +if ( $json->{new_size} < ($json->{new_size_q1} - $json->{new_size_q3} - $json->{new_size_q1}) * 1.5 or $json->{new_size} < $json->{new_size_avg} / 3 ) { $toosmall = "1"; } else {