summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/ChangeLog2
-rw-r--r--perl-install/install_any.pm4
2 files changed, 4 insertions, 2 deletions
diff --git a/perl-install/ChangeLog b/perl-install/ChangeLog
index baaed72b3..76b376dd7 100644
--- a/perl-install/ChangeLog
+++ b/perl-install/ChangeLog
@@ -6,6 +6,8 @@
* install2.pm: add exit button if live upgrade.
+ * install_any.pm: increased minimal available size to 65Mb.
+
* install_steps.pm, standalone/printerdrake: fixed cups to CUPS
for mode.
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm
index 18ac6754f..e2aa3ee57 100644
--- a/perl-install/install_any.pm
+++ b/perl-install/install_any.pm
@@ -243,8 +243,8 @@ sub getAvailableSpace {
#- make sure of this place to be available for installation, this could help a lot.
#- currently doing a very small install use 36Mb of postinstall-rpm, but installing
#- these packages may eat up to 90Mb (of course not all the server may be installed!).
- #- 50mb may be a good choice to avoid almost all problem of insuficient space left...
- my $minAvailableSize = 50 * sqr(1024);
+ #- 65mb may be a good choice to avoid almost all problem of insuficient space left...
+ my $minAvailableSize = 65 * sqr(1024);
my $n = !$::testing && getAvailableSpace_mounted($o->{prefix}) ||
getAvailableSpace_raw($o->{fstab}) * 512 / 1.07;