search for: bsduser

Displaying 4 results from an estimated 4 matches for "bsduser".

Did you mean: baduser
2001 Feb 16
1
OpenSSH 2.3.0p1 port to BSDI BSD/OS
...patch, run "autoreconf". Index: auth1.c --- auth1.c 2001/02/13 07:43:16 1.1 +++ auth1.c 2001/02/13 22:00:06 @@ -28,6 +28,12 @@ #include "auth.h" #include "session.h" +#ifdef HAVE_BSD_AUTH_H +# include <login_cap.h> +# include <bsd_auth.h> +static char *bsduser=NULL; /* XXX -- ugly, but we need the original */ +#endif + /* import */ extern ServerOptions options; extern char *forced_command; @@ -258,7 +264,10 @@ NULL, password) == SIASUCCESS) { authenticated = 1; } -#else /* !USE_PAM && !HAVE_OSF_SIA */ +#elif defined(HAVE_BSD_AUTH...
2000 Oct 07
0
OpenSSH changes for BSD/OS
...evision 1.1.1.1 diff -c -r1.1.1.1 auth1.c *** auth1.c 2000/08/17 16:17:52 1.1.1.1 --- auth1.c 2000/10/06 20:45:57 *************** *** 23,28 **** --- 23,34 ---- # include <siad.h> #endif + #ifdef HAVE_BSD_AUTH + # include <login_cap.h> + # include <bsd_auth.h> + static char *bsduser=NULL; /* XXX -- ugly, but we need the original */ + #endif + /* import */ extern ServerOptions options; extern char *forced_command; *************** *** 315,321 **** NULL, password) == SIASUCCESS) { authenticated = 1; } ! #else /* !USE_PAM && !HAVE_OSF_SIA */ /*...
2006 Mar 23
1
Join samba to existing Windows domain
Hi, I am running samba 3.0.14a on FreeBSD 6 box. I need this box to join to existing Windows 2003 domain to act as a file server to serve Windows XP clients. In the book "using samba" says to use "smbpasswd -j ..." to join the domain. But the -j option seems didn't existing. Anyone would be able to tell me what is the best way to make samba to join the domain? Thanks,
2006 Apr 06
2
Join to Windows domains
Hi, I am setting up FreeBSD with Samba to Windows domain environment to act as a file server. Before put it to a real network, I'd like to do the test. If I made samba join to the test domain, do I able to take off from test domain and join to the real domain without re-install samba? Thanks, Jeffrey