diff options
author | Nicolas Lécureuil <neoclust@mageia.org> | 2019-02-17 19:33:03 +0100 |
---|---|---|
committer | Nicolas Lécureuil <neoclust@mageia.org> | 2019-02-17 19:33:03 +0100 |
commit | 89980eb2e4b091515faafd954a865715a069bac9 (patch) | |
tree | 6240a1fe88852d1d4d0acdf5e8b9c56b4c5cbc51 | |
parent | d7ca0fd56fb1a6e43082b718f60eb751dab50354 (diff) | |
download | drakx-net-89980eb2e4b091515faafd954a865715a069bac9.tar drakx-net-89980eb2e4b091515faafd954a865715a069bac9.tar.gz drakx-net-89980eb2e4b091515faafd954a865715a069bac9.tar.bz2 drakx-net-89980eb2e4b091515faafd954a865715a069bac9.tar.xz drakx-net-89980eb2e4b091515faafd954a865715a069bac9.zip |
Remove obsoleted security 'share' option (mga#21117)
Patch from Frédéric Buclin
-rwxr-xr-x | bin/draksambashare | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/draksambashare b/bin/draksambashare index 9b4ca59..8172b6a 100755 --- a/bin/draksambashare +++ b/bin/draksambashare @@ -1034,7 +1034,7 @@ sub configure_samba { ); my @yesorno = qw(yes no); push @yesorno, ""; my @loglevel = qw(0 1 2 3 4 5 6 7 8 9); - my @security_list = qw(share user domain); + my @security_list = qw(user domain); # FIXME: undeclared $o variable: my $wiz = wizards->new({ name => N("Samba Wizard"), @@ -1105,7 +1105,9 @@ sub configure_samba { next => 'ask_security', }, ask_security => { - name => N("Security mode") . "\n\n" . N("User level: the client sends a session setup request directly following protocol negotiation. This request provides a username and password.") . "\n" . N("Share level: the client authenticates itself separately for each share") . "\n" . N("Domain level: provides a mechanism for storing all user and group accounts in a central, shared, account repository. The centralized account repository is shared between domain (security) controllers."), + name => N("Security mode") . "\n\n" . + N("User level: the client sends a session setup request directly following protocol negotiation. This request provides a username and password.") . "\n" . + N("Domain level (PDC only): provides a mechanism for storing all user and group accounts in a central, shared, account repository. The centralized account repository is shared between domain (security) controllers."), pre => sub { $o->{var}{wiz_security} ||= $samba->{global}{security}; $o->{var}{host_allow} ||= $samba->{global}{'hosts allow'}; |