summaryrefslogtreecommitdiffstats
path: root/perl-install/install2.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-07-19 00:05:25 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-07-19 00:05:25 +0000
commit65c4cf5a5db0dc5e8900256960960a54fdec0b69 (patch)
tree1af06108ec5fad6dca8c9821b8c3b2003f6dc394 /perl-install/install2.pm
parent4239729f41a697b744609b24993e756ec48a1303 (diff)
downloaddrakx-65c4cf5a5db0dc5e8900256960960a54fdec0b69.tar
drakx-65c4cf5a5db0dc5e8900256960960a54fdec0b69.tar.gz
drakx-65c4cf5a5db0dc5e8900256960960a54fdec0b69.tar.bz2
drakx-65c4cf5a5db0dc5e8900256960960a54fdec0b69.tar.xz
drakx-65c4cf5a5db0dc5e8900256960960a54fdec0b69.zip
based on Michael Brown <mbrown@fensystems.co.uk> patch:
- enables graphical steps in auto_installs for more than gtk - various cleanup
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r--perl-install/install2.pm17
1 files changed, 7 insertions, 10 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm
index e75dcc57c..d8009c523 100644
--- a/perl-install/install2.pm
+++ b/perl-install/install2.pm
@@ -451,12 +451,6 @@ sub main {
modules::read_stage1_conf($_) foreach "/tmp/conf.modules", "/etc/modules.conf";
modules::read_already_loaded();
- $o->{interactive} ||= 'gtk';
- if ($o->{interactive} eq "gtk" && availableMemory < 22 * 1024) {
- log::l("switching to newt install cuz not enough memory");
- $o->{interactive} = "newt";
- }
-
#- done after module dependencies are loaded for "vfat depends on fat"
if ($::auto_install) {
require install_steps_auto_install;
@@ -473,11 +467,15 @@ sub main {
log::l("auto install config file loaded successfully");
}
}
- unless ($::auto_install) {
- $o->{interactive} ||= 'gtk';
- require"install_steps_$o->{interactive}.pm";
+ $o->{interactive} ||= 'gtk' if !$::auto_install;
+
+ if ($o->{interactive} eq "gtk" && availableMemory < 22 * 1024) {
+ log::l("switching to newt install cuz not enough memory");
+ $o->{interactive} = "newt";
}
+ require"install_steps_$o->{interactive}.pm" if $o->{interactive}; #- no space to skip perl2fcalls
+
eval { $o = $::o = install_any::loadO($o, "patch") } if $patch;
eval { $o = $::o = install_any::loadO($o, $cfg) } if $cfg;
@@ -514,7 +512,6 @@ sub main {
my $o_;
while (1) {
- require"install_steps_$o->{interactive}.pm";
$o_ = $::auto_install ?
install_steps_auto_install->new($o) :
$o->{interactive} eq "stdio" ?