MacOS 开机自动加载 SVNSERVE 服务

通过在 MacOS 的 /Library/LaunchDaemons 目录下增加 plist 文件实现开机启动SVN服务的方法:

在终端中:

% cd  /Library/LaunchDaemons
% vi org.tigris.subversion.svnserve.plist

增加如下内容:




    
        Disabled
        
        UserName
        Liuyong
        Label
        org.tigris.subversion.svnserve
        ProgramArguments
        
            /usr/bin/svnserve
            --inetd
            --root
            /Volumes/Macintosh HD/svnroot
        
        ServiceDescription
        SVN Version Control System
        Sockets
        
            Listeners
            
                
                    SockFamily
                    IPv4
                    SockServiceName
                    svn
                    SockType
                    stream
                
                
                    SockFamily
                    IPv6
                    SockServiceName
                    svn
                    SockType
                    stream
                
            
        
        inetdCompatibility
        
            Wait
            
        
    


其中:

/Volumes/Macintosh HD/svnroot


是 SVN 的根目录。

你可能感兴趣的:(MacOS,维护,工作日志,SVN,plist)