master
Heuzef 5 years ago
parent 82913124cb
commit 96e3084dcc
  1. 8
      Check.pm

@ -96,10 +96,10 @@ sub action
} }
# Using a mathematical formula to calculate the consistency of the average size, for new files, on all backups # Using a mathematical formula to calculate the consistency of the average size, for new files, on all backups
my $toobig = 0; if ( $Backups[-4] ) { # There are enough backup ?
my $toosmall = 0; my $toobig = 0;
my $toosmall = 0;
if ( $Backups[-4] ) {
# TOO BIG ? If the size is 6 times higher than usual : # TOO BIG ? If the size is 6 times higher than usual :
if ( $new_size > ($new_size_q3 + $new_size_q3 - $new_size_q1) * 1.5 or $new_size > $new_size_avg * 6 ) { if ( $new_size > ($new_size_q3 + $new_size_q3 - $new_size_q1) * 1.5 or $new_size > $new_size_avg * 6 ) {
$toobig = 1; $toobig = 1;

Loading…
Cancel
Save