diff options
author | Antoine Ginies <aginies@mandriva.com> | 2005-06-08 13:25:50 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2005-06-08 13:25:50 +0000 |
commit | c7ebe2074079fd8de724d17a8f41c14d3df7c026 (patch) | |
tree | 3f853be4df503ceaeb32acae7b4296373f20bbad /sshd_wizard | |
parent | d6822f3c611babd9648fb1e6e97f24dabdf00515 (diff) | |
download | drakwizard-c7ebe2074079fd8de724d17a8f41c14d3df7c026.tar drakwizard-c7ebe2074079fd8de724d17a8f41c14d3df7c026.tar.gz drakwizard-c7ebe2074079fd8de724d17a8f41c14d3df7c026.tar.bz2 drakwizard-c7ebe2074079fd8de724d17a8f41c14d3df7c026.tar.xz drakwizard-c7ebe2074079fd8de724d17a8f41c14d3df7c026.zip |
use list to select newbie or expert mode
Diffstat (limited to 'sshd_wizard')
-rwxr-xr-x | sshd_wizard/Sshd.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sshd_wizard/Sshd.pm b/sshd_wizard/Sshd.pm index ab3d89a6..b36c76da 100755 --- a/sshd_wizard/Sshd.pm +++ b/sshd_wizard/Sshd.pm @@ -69,7 +69,7 @@ $o->{pages} = { welcome => { name => N('OpenSSH SSH daemon configuration'), data => [ - { label => N("Wich type of configuration do you you want to do:"), val => \$o->{var}{wiz_type}, list => [ keys %type ], format => sub { $type{$_[0]} } }, + { label => N("Wich type of configuration do you you want to do:"), type => 'list', val => \$o->{var}{wiz_type}, list => [ keys %type ], format => sub { $type{$_[0]} } }, ], next => 'config_step1', }, |