increase additional number of blocks from 1.1 to 1.2 times the computed number

This commit is contained in:
Johannes Schauer Marin Rodrigues 2024-06-02 12:08:52 +02:00
parent f3ea5f2676
commit abc66c5dc7
Signed by untrusted user: josch
GPG key ID: F2CBA5C78FBD83E1

View file

@ -4455,8 +4455,9 @@ sub approx_disk_usage {
# image. See https://bugs.debian.org/1005857
find({ wanted => $scan_installed_size, no_chdir => 1 }, $directory);
# because the above is only a heuristic we add 10% extra for good measure
return int($installed_size * 1.1);
# the above is only a heuristic and especially ext4 will consume quite a
# few more blocks than the heuristic above is going to compute
return int($installed_size * 1.2);
}
sub main() {