summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-09-24 07:35:37 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-09-24 07:35:37 +0000
commit3c5112d6c6ed6bb95a60edc2d6ff56e0c0b681e5 (patch)
tree4103db8467dd973f90c22de43b5a2ddbca68d4cb /perl-install/install_steps_interactive.pm
parentc40d46072080be5060f50e6ad1cd12dc630b5162 (diff)
downloaddrakx-backup-do-not-use-3c5112d6c6ed6bb95a60edc2d6ff56e0c0b681e5.tar
drakx-backup-do-not-use-3c5112d6c6ed6bb95a60edc2d6ff56e0c0b681e5.tar.gz
drakx-backup-do-not-use-3c5112d6c6ed6bb95a60edc2d6ff56e0c0b681e5.tar.bz2
drakx-backup-do-not-use-3c5112d6c6ed6bb95a60edc2d6ff56e0c0b681e5.tar.xz
drakx-backup-do-not-use-3c5112d6c6ed6bb95a60edc2d6ff56e0c0b681e5.zip
oops, i missed a ->cleanupPrinter here. inline it here too
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 8fa31372d..c8e44eb4f 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -1146,7 +1146,12 @@ sub summary {
$o->summary_prompt(\@l, $check_complete);
- $o->cleanupPrinter;
+ if ($o->{printer}) {
+ #- Clean up $o->{printer} so that the records for an auto-installation
+ #- contain only the important stuff
+ require printer::printerdrake;
+ printer::printerdrake::final_cleanup($o->{printer});
+ }
install_steps::configureTimezone($o) if !$timezone_manually_set; #- do not forget it.
}