summaryrefslogtreecommitdiffstats
path: root/samba_wizard/Samba.pm
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2005-06-13 08:36:23 +0000
committerAntoine Ginies <aginies@mandriva.com>2005-06-13 08:36:23 +0000
commit72f65252fc1d1feb58ded7a3e0bed6bfa6353d8e (patch)
tree2a5b24a72ef01b4c4b5c0d0aed5d03c96b8af111 /samba_wizard/Samba.pm
parentbaac804cbfa8c184018cf266935f9f6207913e62 (diff)
downloaddrakwizard-72f65252fc1d1feb58ded7a3e0bed6bfa6353d8e.tar
drakwizard-72f65252fc1d1feb58ded7a3e0bed6bfa6353d8e.tar.gz
drakwizard-72f65252fc1d1feb58ded7a3e0bed6bfa6353d8e.tar.bz2
drakwizard-72f65252fc1d1feb58ded7a3e0bed6bfa6353d8e.tar.xz
drakwizard-72f65252fc1d1feb58ded7a3e0bed6bfa6353d8e.zip
force BDC to use an LDAP backend
Diffstat (limited to 'samba_wizard/Samba.pm')
-rwxr-xr-xsamba_wizard/Samba.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/samba_wizard/Samba.pm b/samba_wizard/Samba.pm
index d9cb56a1..9e566088 100755
--- a/samba_wizard/Samba.pm
+++ b/samba_wizard/Samba.pm
@@ -80,7 +80,7 @@ use Data::Dumper;
print Dumper($samba);
my %type = (
- 1 => N('BDC - backup domain controller'),
+ 1 => N('BDC - backup domain controller (need PDC+LDAP)'),
2 => N('PDC - primary domain controller'),
3 => N('Standalone - standalone server'),
4 => N('Member - member of a domain'),
@@ -91,7 +91,7 @@ my @loglevel = qw(0 1 2 3 4 5 6 7 8 9);
$o->{pages} = {
welcome => {
- name => N('Samba Configuration Wizard') . "\n\n" . N('Samba allows your server to behave as a file and print server for workstations running non-Linux systems.') . "\n\n" . N('PDC: primary domain controller') . "\n" . N('BDC: backup domain controller') . "\n" . N('standalone: standalone server') . "\n" . N('Member: member of a domain'),
+ name => N('Samba server configuration Wizard') . "\n\n" . N('Samba allows your server to behave as a file and print server for workstations running non-Linux systems.'),
no_back => 1,
pre => sub {
if (-f $wiz_samba_etc) {
@@ -114,7 +114,7 @@ $o->{pages} = {
return 'member' }
},
data => [
- { label => N("Wich type of Samba server do you you want:") . " ", val => \$o->{var}{wiz_type}, type => 'list', list => [ keys %type ], format => sub { $type{$_[0]} } },
+ { label => "", val => \$o->{var}{wiz_type}, type => 'list', list => [ keys %type ], format => sub { $type{$_[0]} } },
],
},
pdc => {
@@ -195,7 +195,7 @@ $o->{pages} = {
{ label => N('Domain logons'), fixed_val => \$o->{var}{wiz_domain_logons} },
{ label => N('admin users:'), val => \$o->{var}{wiz_admin_users}, help => N('root @adm') },
],
- next => 'ask_workgroup',
+ next => 'ldap_conf',
},
member => {
name => N('Member of a domain') . "\n\n" . ('Share data, users home or printers.') . "\n" . N('Please enter the domain you want to join.'),