diff options
author | Francois Pons <fpons@mandriva.com> | 2000-06-20 17:30:30 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-06-20 17:30:30 +0000 |
commit | ba80043bba7bb9f5a55de1c3e45841f995f00ea1 (patch) | |
tree | 6d4a9c8a6299c67f405988036a0938495fd47e52 /perl-install/install_steps_interactive.pm | |
parent | 7f7a9b7b58dbef59e2e1a09afe682983dc7806f8 (diff) | |
download | drakx-backup-do-not-use-ba80043bba7bb9f5a55de1c3e45841f995f00ea1.tar drakx-backup-do-not-use-ba80043bba7bb9f5a55de1c3e45841f995f00ea1.tar.gz drakx-backup-do-not-use-ba80043bba7bb9f5a55de1c3e45841f995f00ea1.tar.bz2 drakx-backup-do-not-use-ba80043bba7bb9f5a55de1c3e45841f995f00ea1.tar.xz drakx-backup-do-not-use-ba80043bba7bb9f5a55de1c3e45841f995f00ea1.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 00ed1b99c..a92f7b272 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -838,9 +838,13 @@ You can add some more or change the existing ones."), if ($c eq "Add") { my @labels = map { $_->{label} } @{$b->{entries}}; my $prefix; - - $e = { type => 'image' }; - $prefix = "linux"; + if ($in->ask_from_list_('', _("Which type of entry do you want to add?"), [ __("Linux"), __("Other OS (SunOS...)") ]) eq "Linux") { + $e = { type => 'image' }; + $prefix = "linux"; + } else { + $e = { type => 'other' }; + $prefix = "sunos"; + } $e->{label} = $prefix; for (my $nb = 0; member($e->{label}, @labels); $nb++) { $e->{label} = "$prefix-$nb" } |