SVN Repository Creation Script (Gentoo)
November 13th, 2008
Another lazily written yet useful script I wrote for creating SVN repositories in Gentoo.
This script is based on this great guide at Rockfloat.
Could use some improvement, like another argument for the name of the user getting access to the repo…
Again, apologies for the line wrapping… Fixed
Code below the fold.
#!/bin/bash #Copyright (c) 2008 Brian Ortiz "Ortzinator" # #Permission is hereby granted, free of charge, to any person obtaining a copy #of this software and associated documentation files (the "Software"), to deal #in the Software without restriction, including without limitation the rights #to use, copy, modify, merge, publish, distribute, sublicense, and/or sell #copies of the Software, and to permit persons to whom the Software is #furnished to do so, subject to the following conditions: # #The above copyright notice and this permission notice shall be included in #all copies or substantial portions of the Software. # #THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE #AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, #OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN #THE SOFTWARE. if [ $# -ne 1 ] then echo "Exactly one argument required" exit 1 fi if [ -d "/var/svn/repos/$1" ] then echo "ERROR: directory '$dir' already exists!" exit 1 else svnadmin create /var/svn/repos/$1 || { echo "Error 1"; exit 1; } chown -R apache:svnusers /var/svn/repos/ || { echo "Error 2"; exit 1; } chmod -R g-w /var/svn/repos/$1 || { echo "Error 3"; exit 1; } chmod -R g+rw /var/svn/repos/$1/db || { echo "Error 4"; exit 1; } chmod -R g+rw /var/svn/repos/$1/locks || { echo "Error 5"; exit 1; } svn mkdir file:///var/svn/repos/$1/trunk -m "Create trunk directory" || { echo "Error 6"; exit 1; } svn mkdir file:///var/svn/repos/$1/tags -m "Create tags directory" || { echo "Error 7"; exit 1; } svn mkdir file:///var/svn/repos/$1/branches -m "Create branches directory" || { echo "Error 8"; exit 1; } echo "[$1:/] * = r brian = rw" >> /var/svn/conf/svnpolicy exit 0 fi





