diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-09-24 07:35:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-09-24 07:35:37 +0000 |
commit | 3c5112d6c6ed6bb95a60edc2d6ff56e0c0b681e5 (patch) | |
tree | 4103db8467dd973f90c22de43b5a2ddbca68d4cb | |
parent | c40d46072080be5060f50e6ad1cd12dc630b5162 (diff) | |
download | drakx-3c5112d6c6ed6bb95a60edc2d6ff56e0c0b681e5.tar drakx-3c5112d6c6ed6bb95a60edc2d6ff56e0c0b681e5.tar.gz drakx-3c5112d6c6ed6bb95a60edc2d6ff56e0c0b681e5.tar.bz2 drakx-3c5112d6c6ed6bb95a60edc2d6ff56e0c0b681e5.tar.xz drakx-3c5112d6c6ed6bb95a60edc2d6ff56e0c0b681e5.zip |
oops, i missed a ->cleanupPrinter here. inline it here too
-rw-r--r-- | perl-install/install_steps_interactive.pm | 7 |
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. } |