From 89b2e141d7018281ee5cb1fa202f6312a84a2759 Mon Sep 17 00:00:00 2001 From: Stew Benedict Date: Tue, 14 Sep 2004 08:06:20 +0000 Subject: Fix net join syntax for winbind setup. --- perl-install/authentication.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}; -- cgit v1.2.1