summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_auto_install.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-08-13 19:49:27 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-08-13 19:49:27 +0000
commit30bd557eb1cdb81ef2bac4d435714b1b9e985ff5 (patch)
treee1a37dc7954a9b1924510039033af97de84eda69 /perl-install/install_steps_auto_install.pm
parent99d1d3f6512c77f34b863e3b0e1ce1a4ebccc072 (diff)
downloaddrakx-backup-do-not-use-30bd557eb1cdb81ef2bac4d435714b1b9e985ff5.tar
drakx-backup-do-not-use-30bd557eb1cdb81ef2bac4d435714b1b9e985ff5.tar.gz
drakx-backup-do-not-use-30bd557eb1cdb81ef2bac4d435714b1b9e985ff5.tar.bz2
drakx-backup-do-not-use-30bd557eb1cdb81ef2bac4d435714b1b9e985ff5.tar.xz
drakx-backup-do-not-use-30bd557eb1cdb81ef2bac4d435714b1b9e985ff5.zip
auto_inst enhancements
Diffstat (limited to 'perl-install/install_steps_auto_install.pm')
-rw-r--r--perl-install/install_steps_auto_install.pm66
1 files changed, 36 insertions, 30 deletions
diff --git a/perl-install/install_steps_auto_install.pm b/perl-install/install_steps_auto_install.pm
index a7870240d..50757224b 100644
--- a/perl-install/install_steps_auto_install.pm
+++ b/perl-install/install_steps_auto_install.pm
@@ -2,20 +2,15 @@ package install_steps_auto_install; # $Id$
use diagnostics;
use strict;
-use lang;
use vars qw(@ISA $graphical @graphical_steps);
@ISA = qw(install_steps);
-use modules;
-
-
#-######################################################################################
#- misc imports
#-######################################################################################
use common;
use install_steps;
-use log;
sub new {
my ($type, $o) = @_;
@@ -31,20 +26,46 @@ sub new {
@ISA = ($interactiveClass, @ISA);
- #- remove our non-interactive stuff
- eval "undef *$_" foreach qw(configureNetwork enteringStep ask_warn wait_message errorInStep installPackages);
-
- my $f = $o->{steps}{first};
- do {
- member($f, @{$o->{interactiveSteps}}) ? $o->{steps}{$f}{noauto} = 1 : $o->{steps}{$f}{auto} = 1;
- } while ($f = $o->{steps}{$f}{next});
+ for (my $f = $o->{steps}{first}; $f; $f = $o->{steps}{$f}{next}) {
+ my $auto_name = member($f, @{$o->{interactiveSteps}}) ? 'noauto' : 'auto';
+ $o->{steps}{$f}{$auto_name} = 1;
+ }
goto &{$::{$interactiveClass . "::"}{new}};
} else {
- (bless {}, ref $type || $type)->SUPER::new($o);
+ @ISA = ('install_steps_auto_install_non_interactive', @ISA);
+ (bless {}, ref $type || $type)->install_steps::new($o);
+ }
+}
+
+
+sub exitInstall {
+ my ($o, $alldone) = @_;
+ return if $o->{autoExitInstall};
+
+ if ($o->{interactive}) {
+ (bless $o, "install_steps_$o->{interactive}")->exitInstall($alldone);
+ } else {
+ install_steps::exitInstall($o);
+ print "\a";
+ print "Auto installation complete (the postInstall is not done yet though)\n";
+ print "Press <Enter> to reboot\n";
+ <STDIN>;
}
}
+
+#-######################################################################################
+#- install_steps_auto_install_non_interactive package
+#-######################################################################################
+package install_steps_auto_install_non_interactive;
+
+use install_steps;
+use lang;
+use modules;
+use common;
+use log;
+
sub configureNetwork {
my ($o) = @_;
modules::load_thiskind('net');
@@ -54,7 +75,7 @@ sub configureNetwork {
sub enteringStep {
my ($o, $step) = @_;
print _("Entering step `%s'\n", translate($o->{steps}{$step}{text}));
- $o->SUPER::enteringStep($step);
+ $o->install_steps::enteringStep($step);
}
sub ask_warn {
@@ -77,7 +98,7 @@ sub errorInStep {
#-######################################################################################
sub selectLanguage {
my ($o) = @_;
- $o->SUPER::selectLanguage;
+ $o->install_steps::selectLanguage;
lang::load_console_font($o->{lang});
}
@@ -86,19 +107,4 @@ sub installPackages {
catch_cdie { $o->install_steps::installPackages($packages) } sub { print "$@\n"; 1 }
}
-sub exitInstall {
- my ($o, $alldone) = @_;
- return if $o->{autoExitInstall};
-
- if ($o->{interactive}) {
- (bless $o, "install_steps_$o->{interactive}")->exitInstall($alldone);
- } else {
- install_steps::exitInstall($o);
- print "\a";
- print "Auto installation complete (the postInstall is not done yet though)\n";
- print "Press <Enter> to reboot\n";
- <STDIN>;
- }
-}
-
1;