search for: gavinbeatti

Displaying 3 results from an estimated 3 matches for "gavinbeatti".

Did you mean: gavinbeatty
2009 Apr 02
6
[Bug 1585] New: Allow an `Include' option which reads another config file in place and does not error out when `Include' file not readable
https://bugzilla.mindrot.org/show_bug.cgi?id=1585 Summary: Allow an `Include' option which reads another config file in place and does not error out when `Include' file not readable Product: Portable OpenSSH Version: 5.2p1 Platform: All OS/Version: All Status: NEW Keywords:
2008 Dec 11
1
Samba4 CIFS proxy: NT_STATUS_NO_LOGON_SERVERS
Hello, I'm trying to use the cifs proxy vfs module in Samba4. I can join the domain seemingly without problem. When trying to access the proxy server (and hence its share) I get NT_STATUS_NO_LOGON_SERVERS. My setup is as follows: root@proxy# ./setup/provision --realm=<realm> --domain=<domain> --adminpass=<adminpass> \ --server-role='member server'
2009 Mar 24
1
[PATCH] "Include" option for ssh configs
Hello, Attached is a patch to add support for an "include" file in ssh configs. It is written against openssh-5.2p1. ## ~/.ssh/config Include ~/.ssh/config.contrib ## end - Leading ~/ expands to $HOME according to getpwuid_r?. - Leading ~username expands to $HOME for username according to getpwnam_r. - Fallbacks to /home/$USER are implemented for when struct passwd.pw_dir is NULL?