[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Starting svnserve under OS X Tiger

From: Jim Correia <jim.correia_at_pobox.com>
Date: 2005-09-05 04:43:25 CEST

On Sep 4, 2005, at 10:31 PM, Chris Gehlker wrote:

> I would appreciate any guidance from here.

The easiest way on 10.4 is to use launchd.

This should get you started:

http://developer.apple.com/macosx/launchd.html

My svn.plist file reads:

<?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>Label</key>
         <string>svn</string>
         <key>Program</key>
         <string>/usr/local/bin/svnserve</string>
         <key>ProgramArguments</key>
         <array>
                 <string>/usr/local/bin/svnserve</string>
                 <string>--inetd</string>
         </array>
         <key>SessionCreate</key>
         <true/>
         <key>Sockets</key>
         <dict>
                 <key>Listeners</key>
                 <dict>
                         <key>SockServiceName</key>
                         <string>svn</string>
                 </dict>
         </dict>
         <key>StandardErrorPath</key>
         <string>/dev/null</string>
         <key>inetdCompatibility</key>
         <dict>
                 <key>Wait</key>
                 <false/>
         </dict>
</dict>
</plist>

Jim

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Sep 5 04:44:12 2005

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.