문서의 이전 판입니다!
sudo apt-get install subversion
sudo mkdir /home/svn sudo svnadmin create /home/svn/REPO sudo mkdir trunk tags branches
/conf# vi svnserve.conf
[general] anon-access = none auth-access = write password-db = passwd authz-db = authz
/conf# vi passwd
[users] svnuser1 = P@ssw0rd
conf# vi authz
svnuser1 = rw
# vi /etc/init/svnserve.conf
description "Subversion server" start on (local-filesystems and net-device-up IFACE=lo and started udev-finish) stop on runlevel [06] chdir /home/svn respawn respawn limit 2 3600 exec /usr/bin/svnserve --foreground --daemon --config-file /home/svn/hello/conf/svnserve.conf --root /home/svn/