diff options
author | Francois Pons <fpons@mandriva.com> | 2000-10-03 17:10:01 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-10-03 17:10:01 +0000 |
commit | 9f9e2fdd3aa7587298928510ef225860101089d6 (patch) | |
tree | 648b2ce1701b0be88aebc9f3d950a52b14d43c78 /perl-install | |
parent | 5fbdc963b632b1d8c8ac3a14728b749f4d03b075 (diff) | |
download | drakx-9f9e2fdd3aa7587298928510ef225860101089d6.tar drakx-9f9e2fdd3aa7587298928510ef225860101089d6.tar.gz drakx-9f9e2fdd3aa7587298928510ef225860101089d6.tar.bz2 drakx-9f9e2fdd3aa7587298928510ef225860101089d6.tar.xz drakx-9f9e2fdd3aa7587298928510ef225860101089d6.zip |
*** empty log message ***
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/ChangeLog | 2 | ||||
-rw-r--r-- | perl-install/install_any.pm | 4 |
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; |