diff options
author | Francois Pons <fpons@mandriva.com> | 2001-07-27 12:18:31 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-07-27 12:18:31 +0000 |
commit | 86c59c0d6fe0bc5d7c7a33e0b715ba38497410a3 (patch) | |
tree | 0fba3236c53f3fe237668ec55689e708de2c1ff1 /perl-install | |
parent | ad69c6747c992c1822e03a30107a28551d221189 (diff) | |
download | drakx-86c59c0d6fe0bc5d7c7a33e0b715ba38497410a3.tar drakx-86c59c0d6fe0bc5d7c7a33e0b715ba38497410a3.tar.gz drakx-86c59c0d6fe0bc5d7c7a33e0b715ba38497410a3.tar.bz2 drakx-86c59c0d6fe0bc5d7c7a33e0b715ba38497410a3.tar.xz drakx-86c59c0d6fe0bc5d7c7a33e0b715ba38497410a3.zip |
changed warn dialog to okcancel dialog when asking user to insert Boot floppy
used or Update Modules floppy (die may cause to rerun install else).
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index e41c5c51a..bf8ce9fcc 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -729,13 +729,13 @@ sub afterInstallPackages($) { sub copyKernelFromFloppy { my ($o) = @_; - $o->ask_warn('', _("Please insert the Boot floppy used in drive %s", $o->{blank})); + $o->ask_okcancel('', _("Please insert the Boot floppy used in drive %s", $o->{blank}), 1) or return; $o->SUPER::copyKernelFromFloppy(); } sub updateModulesFromFloppy { my ($o) = @_; - $o->ask_warn('', _("Please insert the Update Modules floppy in drive %s", $o->{updatemodules})); + $o->ask_okcancel('', _("Please insert the Update Modules floppy in drive %s", $o->{updatemodules}), 1) or return; $o->SUPER::updateModulesFromFloppy(); } |