Created
June 14, 2011 04:34
-
-
Save ulinkwo/1024328 to your computer and use it in GitHub Desktop.
Howto: Start Subversion at Boot on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Step 1 – Create your script. | |
# Step 2 – Save the script in the /etc/init.d/ folder | |
# Step 3 – Make the script executable | |
# sudo chmod +x svnserve | |
# Step 4 – Add the script to the boot sequence | |
# sudo update-rc.d svnserve defaults | |
svnserve -d -r /usr/local/svn/repository_name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment