summaryrefslogtreecommitdiffstats
path: root/perl-install/install_any.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2000-01-06 22:48:08 +0000
committerPascal Rigaux <pixel@mandriva.com>2000-01-06 22:48:08 +0000
commitbb6492e7bf3b348808cc2102c840fc91a3bff7b0 (patch)
tree2b966cfe2b006a6cc66f575ee5f9995a787dc2ff /perl-install/install_any.pm
parent5e2862087db257f94597369f6923eccc3ae6f419 (diff)
downloaddrakx-backup-do-not-use-bb6492e7bf3b348808cc2102c840fc91a3bff7b0.tar
drakx-backup-do-not-use-bb6492e7bf3b348808cc2102c840fc91a3bff7b0.tar.gz
drakx-backup-do-not-use-bb6492e7bf3b348808cc2102c840fc91a3bff7b0.tar.bz2
drakx-backup-do-not-use-bb6492e7bf3b348808cc2102c840fc91a3bff7b0.tar.xz
drakx-backup-do-not-use-bb6492e7bf3b348808cc2102c840fc91a3bff7b0.zip
no_comment
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r--perl-install/install_any.pm5
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";
}