svnserve rc.d/init.d start up script for Fedora/RedHat
I forget where I found this at. But again, I figured I would share this since I’m sure others are looking for the same thing.
/etc/rc.d/init.d/svnserve
#!/bin/bash
#
# /etc/rc.d/init.d/subversion
#
# Starts the Subversion Daemon
#
# chkconfig: 2345 90 10
# description: Subversion Daemon
# processname: svnserve
. /etc/rc.d/init.d/functions
[ -x /usr/bin/svnserve ] || exit 1
### Default variables
. /etc/sysconfig/subversion
RETVAL=0
prog=“svnserve”
desc=“Subversion Daemon”
start() {
[...]
