diff options
author | Christian Belisle <cbelisle@mandriva.com> | 2002-07-31 13:05:46 +0000 |
---|---|---|
committer | Christian Belisle <cbelisle@mandriva.com> | 2002-07-31 13:05:46 +0000 |
commit | c5df0a5b487c8beb4b57311527960f67eb5bedb6 (patch) | |
tree | 9bc168645c650cb2ba288ba3f9588c39ea7033b3 | |
parent | 30671ee7177028688388bf005ad33dd3de1cd43a (diff) | |
download | drakx-backup-do-not-use-c5df0a5b487c8beb4b57311527960f67eb5bedb6.tar drakx-backup-do-not-use-c5df0a5b487c8beb4b57311527960f67eb5bedb6.tar.gz drakx-backup-do-not-use-c5df0a5b487c8beb4b57311527960f67eb5bedb6.tar.bz2 drakx-backup-do-not-use-c5df0a5b487c8beb4b57311527960f67eb5bedb6.tar.xz drakx-backup-do-not-use-c5df0a5b487c8beb4b57311527960f67eb5bedb6.zip |
- put the basic button on top (in the advanced page)
- move set_server_link in the ignore list temporary
-rw-r--r-- | perl-install/security/msec.pm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/perl-install/security/msec.pm b/perl-install/security/msec.pm index 052dbe1b6..3c68103d6 100644 --- a/perl-install/security/msec.pm +++ b/perl-install/security/msec.pm @@ -30,7 +30,7 @@ sub get_functions { my @functions = (); my @ignore_list = qw(indirect commit_changes closelog error initlog log set_secure_level set_security_conf set_server_level print_changes get_translation - password_aging password_length enable_libsafe); + password_aging password_length enable_libsafe create_server_link); my $file = "$prefix/usr/share/msec/mseclib.py"; my $function = ''; @@ -195,8 +195,9 @@ sub choose_options { $in->ask_from( ("DrakSec - Advanced Options"), ("You can customize the following options. For more information, see the mseclib manual page."), - [ @display, - { val =>_("Basic Options"), type => 'button', clicked_may_quit => sub { $$signal = 0; print "";} } + [ + { val =>_("Basic Options"), type => 'button', clicked_may_quit => sub { $$signal = 0; print "";} }, + @display ], ); } |