diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-21 14:12:00 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-21 14:12:00 +0000 |
commit | b42ba60bf559e6c8f1e3d4161478424ef6a9ae62 (patch) | |
tree | 63eae52e22ffc8469c16497b04a2a0a5d8f05ea6 | |
parent | 8d109d783a3df6a0082cae3f23ddfe2b1c15a224 (diff) | |
download | drakx-b42ba60bf559e6c8f1e3d4161478424ef6a9ae62.tar drakx-b42ba60bf559e6c8f1e3d4161478424ef6a9ae62.tar.gz drakx-b42ba60bf559e6c8f1e3d4161478424ef6a9ae62.tar.bz2 drakx-b42ba60bf559e6c8f1e3d4161478424ef6a9ae62.tar.xz drakx-b42ba60bf559e6c8f1e3d4161478424ef6a9ae62.zip |
"Generate auto install floppy" and "Save packages selection" are now available in advanced
-rw-r--r-- | perl-install/install_steps_interactive.pm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index db7351ca3..499d81062 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1268,8 +1268,7 @@ Do you really want to quit now?"), 0); ok => N("Reboot"), }, [ - if_($::expert, - { val => \ (my $_t1 = N("Generate auto install floppy")), clicked => sub { + { val => \ (my $_t1 = N("Generate auto install floppy")), clicked => sub { my $t = $o->ask_from_list_('', N("The auto install can be fully automated if wanted, in that case it will take over the hard drive!! @@ -1279,8 +1278,7 @@ You may prefer to replay the installation. "), [ N_("Replay"), N_("Automated") ]); $t and $o->generateAutoInstFloppy($t eq 'Replay'); }, advanced => 1 }, - { val => \ (my $_t2 = N("Save packages selection")), clicked => sub { install_any::g_default_packages($o) }, advanced => 1 }, - ), + { val => \ (my $_t2 = N("Save packages selection")), clicked => sub { install_any::g_default_packages($o) }, advanced => 1 }, ] ) if $alldone && !$::g_auto_install; } |