I think since updating my subversion package to 1.6.9, I am seeing this
repeated twice in my logs every 60 seconds:
org.tigris.subversion.svnserve[47023]: launchproxy[47023]:
/opt/subversion/bin/svnserve: Connection from: 127.0.0.1 on port: 51712
svnserve[47024]: auxpropfunc error no mechanism available
Nothing seems wrong with my repository, but I just can't figure out the
auxpropfunc error as I am not using sasl authentication, just a plain
old passwd file.
Here is my svnserve.conf file
[general]
anon-access = none
auth-access = write
password-db = passwd
realm = svn
and here is my plist file (this is running on an xserve running 10.6.2)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Debug</key>
<false/>
<key>GroupName</key>
<string>svngroup</string>
<key>Label</key>
<string>org.tigris.subversion.svnserve</string>
<key>OnDemand</key>
<true/>
<key>Program</key>
<string>/opt/subversion/bin/svnserve</string>
<key>ProgramArguments</key>
<array>
<string>svnserve</string>
<string>--inetd</string>
<string>--root=/Volumes/Filestore/svn</string>
</array>
<key>ServiceDescription</key>
<string>SVN Version Control System</string>
<key>Sockets</key>
<dict>
<key>Listeners</key>
<array>
<dict>
<key>SockFamily</key>
<string>IPv4</string>
<key>SockServiceName</key>
<string>svn</string>
<key>SockType</key>
<string>stream</string>
</dict>
<dict>
<key>SockFamily</key>
<string>IPv6</string>
<key>SockServiceName</key>
<string>svn</string>
<key>SockType</key>
<string>stream</string>
</dict>
</array>
</dict>
<key>Umask</key>
<integer>2</integer>
<key>UserName</key>
<string>svn</string>
<key>inetdCompatibility</key>
<dict>
<key>Wait</key>
<false/>
</dict>
</dict>
</plist>
Received on 2010-03-18 19:01:18 CET