summaryrefslogtreecommitdiffstats
path: root/perl-install/authentication.pm
diff options
context:
space:
mode:
authorStew Benedict <stewb@mandriva.org>2004-09-14 08:06:20 +0000
committerStew Benedict <stewb@mandriva.org>2004-09-14 08:06:20 +0000
commit89b2e141d7018281ee5cb1fa202f6312a84a2759 (patch)
treed9d1515efd9185a19cb42ffc5fdfbd8ba3528653 /perl-install/authentication.pm
parent75e5fed165948b5eecab56b0f4c7c630ffd924d8 (diff)
downloaddrakx-backup-do-not-use-89b2e141d7018281ee5cb1fa202f6312a84a2759.tar
drakx-backup-do-not-use-89b2e141d7018281ee5cb1fa202f6312a84a2759.tar.gz
drakx-backup-do-not-use-89b2e141d7018281ee5cb1fa202f6312a84a2759.tar.bz2
drakx-backup-do-not-use-89b2e141d7018281ee5cb1fa202f6312a84a2759.tar.xz
drakx-backup-do-not-use-89b2e141d7018281ee5cb1fa202f6312a84a2759.zip
Fix net join syntax for winbind setup.
Diffstat (limited to 'perl-install/authentication.pm')
-rw-r--r--perl-install/authentication.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm
index b929985dd..9b8d3ab09 100644
--- a/perl-install/authentication.pm
+++ b/perl-install/authentication.pm
@@ -264,7 +264,7 @@ sub set {
#- defer running smbpassword until the network is up
$when_network_is_up->(sub {
- run_program::rooted($::prefix, 'net', 'join', '-j', $domain, '-U', $authentication->{winuser} . '%' . $authentication->{winpass});
+ run_program::rooted($::prefix, 'net', 'join', $domain, '-U', $authentication->{winuser} . '%' . $authentication->{winpass});
});
} elsif ($kind eq 'SMBKRB') {
$authentication->{AD_server} ||= 'ads.' . $authentication->{AD_domain};