diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-11 13:23:45 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-11 13:23:45 +0000 |
commit | 9dba0e05623a219d105b8074e59a1e917d0d4861 (patch) | |
tree | b424d546f998977d12dbeaca6f921a919c347675 /perl-install | |
parent | 6780926e3315c989d61044e4c71e3fee4ad73a2f (diff) | |
download | drakx-9dba0e05623a219d105b8074e59a1e917d0d4861.tar drakx-9dba0e05623a219d105b8074e59a1e917d0d4861.tar.gz drakx-9dba0e05623a219d105b8074e59a1e917d0d4861.tar.bz2 drakx-9dba0e05623a219d105b8074e59a1e917d0d4861.tar.xz drakx-9dba0e05623a219d105b8074e59a1e917d0d4861.zip |
replace availableMemory with availableMemory()
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install2.pm | 2 | ||||
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index af3a40040..f9bebe686 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -494,7 +494,7 @@ sub main { } $o->{interactive} ||= 'gtk' if !$::auto_install; - if ($o->{interactive} eq "gtk" && availableMemory < 22 * 1024) { + if ($o->{interactive} eq "gtk" && availableMemory() < 22 * 1024) { log::l("switching to newt install cuz not enough memory"); $o->{interactive} = "newt"; } diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 798d6fcf5..7374e8592 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -469,7 +469,7 @@ sub formatMountPartitions { $@ =~ /fsck failed on (\S+)/ or return; $o->ask_yesorno('', N("Failed to check filesystem %s. Do you want to repair the errors? (beware, you can loose data)", $1), 1); }; - die N("Not enough swap space to fulfill installation, please add some") if availableMemory < 40 * 1024; + die N("Not enough swap space to fulfill installation, please add some") if availableMemory() < 40 * 1024; } #------------------------------------------------------------------------------ |