Starting svnserve automatically at boot time

Gregory Piñero gregpinero at gmail.com
Tue Sep 27 05:26:22 UTC 2005


Hi,

While searching for how to do this, I found this script, however I don't
know bash and I was wondering if someone knowledgable could peruse it and
tell me if it will work for unbuntu and where to put it.

<code>
#!/bin/sh
# Begin $rc_base/init.d/svn

# Based on sysklogd script from LFS-3.1 and earlier.
# Rewritten by Gerard Beekmans - gerard at linuxfromscratch.org

#$LastChangedBy: bdubbs $
#$Date: 2005-08-01 13:29:19 -0600 (Mon, 01 Aug 2005) $

. /etc/sysconfig/rc
. $rc_functions

case "$1" in
start)
boot_mesg "Starting Subversion..."
loadproc /usr/bin/svnserve -d -r /srv/svn/repositories
;;

stop)
boot_mesg "Stopping Subversion..."
killproc /usr/bin/svnserve.orig
;;

restart)
$0 stop
sleep 1
$0 start
;;

status)
statusproc /usr/bin/svnserve.orig
;;

*)
echo "Usage: $0 {start|stop|restart|status}"
exit 1
;;
esac

# End $rc_base/init.d/svn

</code>

Here's the website where I found this:
http://www.linuxfromscratch.org/blfs/view/cvs/server/svnserver.html

Thanks in advance for your help,

Greg

--
Gregory Piñero
Chief Innovation Officer
Blended Technologies
(www.blendedtechnologies.com <http://www.blendedtechnologies.com>)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.ubuntu.com/archives/ubuntu-users/attachments/20050927/30d0908e/attachment.html>


More information about the ubuntu-users mailing list