search for: gavinbeatty

Displaying 3 results from an estimated 3 matches for "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
...penSSH Version: 5.2p1 Platform: All OS/Version: All Status: NEW Keywords: low-hanging-fruit, patch Severity: enhancement Priority: P3 Component: ssh AssignedTo: unassigned-bugs at mindrot.org ReportedBy: gavinbeatty at gmail.com Created an attachment (id=1623) --> (http://bugzilla.mindrot.org/attachment.cgi?id=1623) Attached is a patch for an almost complete implementation. All that remains is the "file not readable is not an error" logic. Adding the following to your config file should read t...
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?