Created
May 7, 2011 12:00
-
-
Save alexrinass/960444 to your computer and use it in GitHub Desktop.
SVN utils for linux server
This file contains 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 | |
# | |
# Wrapper script to force correct umask for svnadmin. | |
# Put in /usr/local/sbin to override default svnadmin binary. | |
# | |
umask 002 | |
/usr/bin/svnadmin "$@" |
This file contains 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 | |
# | |
# Wrapper script to force correct umask for svnserve and to set the base SVN directory. | |
# Put in /usr/local/sbin to override default svnserve binary. | |
# | |
umask 002 | |
/usr/bin/svnserve -r /var/lib/subversion "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment