Saturday, October 31, 2015

mac osx - Automatically starting svnserve on Snow Leopard

I have installed Subversion onto my iMac running Snow Leopard, but am having trouble getting svnserve to start up automatically. As I understand it (I'm still fairly green with OSX), the best way to do that is to utilize launchd. To that end, I have created the following .plist file in the /Library/LaunchDaemons folder. If I use launchctl to execute this file, svnserve starts as expected, but it doesn't automatically start when the system starts up or I log in.








Disabled

Label
org.tigris.subversion.svnserve
UserName
Dave
ProgramArguments


/opt/subversion/bin/svnserve
--inetd
--root=/Users/Shared/SVNrep

ServiceDescription
Subversion Standalone Server
Sockets

Listeners



SockFamily
IPv4
SockServiceName
svn
SockType
stream



SockFamily
IPv6
SockServiceName
svn
SockType
stream



inetdCompatibility


Wait






If anyone here could provide any suggestions as to how to get this to work, I'd really appreciate it.

No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...