diff options
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index ccc8343f1..8c41424cb 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -109,8 +109,9 @@ sub getAvailableSpace { do { $_->{mntpoint} eq '/' and return int($_->{size} * 512 / 1.07) } foreach @{$o->{fstab}}; if ($::testing) { - log::l("taking 200MB for testing"); - return 2000 << 20; + my $nb = 350; + log::l("taking ${nb}MB for testing"); + return $nb << 20; } die "missing root partition"; } |