<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Howto: Start Subversion at Boot on Ubuntu</title>
	<atom:link href="http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/</link>
	<description>thoughts that don&#039;t fit in</description>
	<lastBuildDate>Mon, 02 Aug 2010 02:51:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Subversion daemon Init script &#124; assumption of advancement</title>
		<link>http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/comment-page-1/#comment-21819</link>
		<dc:creator>Subversion daemon Init script &#124; assumption of advancement</dc:creator>
		<pubDate>Wed, 21 Jul 2010 10:15:47 +0000</pubDate>
		<guid isPermaLink="false">http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/#comment-21819</guid>
		<description>[...] start-up. So after a little bit searching on the internet and adapting the found resources (here or here), I got my Init script svnserve under [...]</description>
		<content:encoded><![CDATA[<p>[...] start-up. So after a little bit searching on the internet and adapting the found resources (here or here), I got my Init script svnserve under [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: barleone</title>
		<link>http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/comment-page-1/#comment-21711</link>
		<dc:creator>barleone</dc:creator>
		<pubDate>Fri, 07 May 2010 12:27:46 +0000</pubDate>
		<guid isPermaLink="false">http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/#comment-21711</guid>
		<description>Thanks for this simple yet powerfull solution!
I&#039;ve got it working on Ubuntu 10.04 Lucid Lynx.

QUESTION: The other scripts also look interesting. But how to make these working? Where to put them?</description>
		<content:encoded><![CDATA[<p>Thanks for this simple yet powerfull solution!<br />
I&#8217;ve got it working on Ubuntu 10.04 Lucid Lynx.</p>
<p>QUESTION: The other scripts also look interesting. But how to make these working? Where to put them?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack</title>
		<link>http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/comment-page-1/#comment-17961</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Thu, 10 Dec 2009 20:23:32 +0000</pubDate>
		<guid isPermaLink="false">http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/#comment-17961</guid>
		<description>Thanks! You rock.</description>
		<content:encoded><![CDATA[<p>Thanks! You rock.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flashmob</title>
		<link>http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/comment-page-1/#comment-17934</link>
		<dc:creator>Flashmob</dc:creator>
		<pubDate>Wed, 09 Dec 2009 14:53:14 +0000</pubDate>
		<guid isPermaLink="false">http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/#comment-17934</guid>
		<description>Thanks! I will recommend this to all my friends.</description>
		<content:encoded><![CDATA[<p>Thanks! I will recommend this to all my friends.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dinesh Dharme</title>
		<link>http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/comment-page-1/#comment-16499</link>
		<dc:creator>Dinesh Dharme</dc:creator>
		<pubDate>Mon, 21 Sep 2009 07:07:11 +0000</pubDate>
		<guid isPermaLink="false">http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/#comment-16499</guid>
		<description>Thanks, it was really helpful. There were other scripts but they were little complex</description>
		<content:encoded><![CDATA[<p>Thanks, it was really helpful. There were other scripts but they were little complex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith Lynch</title>
		<link>http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/comment-page-1/#comment-16167</link>
		<dc:creator>Keith Lynch</dc:creator>
		<pubDate>Tue, 08 Sep 2009 21:33:54 +0000</pubDate>
		<guid isPermaLink="false">http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/#comment-16167</guid>
		<description>Found the following worked best on Ubuntu

#!/bin/sh
#
# start/stop subversion daemon.
EXECUTABLE=/usr/bin/svnserve

# Test exist:ence of the executable
test -f $EXECUTABLE &#124;&#124; exit 0

# Command line options for starting the service
OPTIONS=&#039;-d -r /var/svnrepos&#039;


case $1 in
     start)
        echo -n &quot;Starting subversion daemon: $EXECUTABLE $OPTIONS\n&quot; 
        start-stop-daemon -vo -x $EXECUTABLE -S -- $OPTIONS
        echo -n &quot;.&quot; 
     ;;

     stop)
        echo -n &quot;Stopping subversion daemon: $EXECUTABLE $OPTIONS\n&quot;
        start-stop-daemon -K -qo -x $EXECUTABLE
        echo -n &quot;.&quot;
     ;;

     force-reload)
        $0 restart
     ;;

     restart)
        $0 stop
        $0 start
     ;;

     *)
        echo &#039;Usage: /etc/init.d/subversion {start&#124;stop&#124;restart}&#039;
        exit 1
     ;;
esac

exit 0</description>
		<content:encoded><![CDATA[<p>Found the following worked best on Ubuntu</p>
<p>#!/bin/sh<br />
#<br />
# start/stop subversion daemon.<br />
EXECUTABLE=/usr/bin/svnserve</p>
<p># Test exist:ence of the executable<br />
test -f $EXECUTABLE || exit 0</p>
<p># Command line options for starting the service<br />
OPTIONS=&#8217;-d -r /var/svnrepos&#8217;</p>
<p>case $1 in<br />
     start)<br />
        echo -n &#8220;Starting subversion daemon: $EXECUTABLE $OPTIONS\n&#8221;<br />
        start-stop-daemon -vo -x $EXECUTABLE -S &#8212; $OPTIONS<br />
        echo -n &#8220;.&#8221;<br />
     ;;</p>
<p>     stop)<br />
        echo -n &#8220;Stopping subversion daemon: $EXECUTABLE $OPTIONS\n&#8221;<br />
        start-stop-daemon -K -qo -x $EXECUTABLE<br />
        echo -n &#8220;.&#8221;<br />
     ;;</p>
<p>     force-reload)<br />
        $0 restart<br />
     ;;</p>
<p>     restart)<br />
        $0 stop<br />
        $0 start<br />
     ;;</p>
<p>     *)<br />
        echo &#8216;Usage: /etc/init.d/subversion {start|stop|restart}&#8217;<br />
        exit 1<br />
     ;;<br />
esac</p>
<p>exit 0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ravi</title>
		<link>http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/comment-page-1/#comment-8989</link>
		<dc:creator>Ravi</dc:creator>
		<pubDate>Fri, 16 Jan 2009 11:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/#comment-8989</guid>
		<description>That was a very crisp to the point solution I was looking for ... Thanks a Lot</description>
		<content:encoded><![CDATA[<p>That was a very crisp to the point solution I was looking for &#8230; Thanks a Lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/comment-page-1/#comment-6972</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Tue, 29 Jul 2008 16:25:32 +0000</pubDate>
		<guid isPermaLink="false">http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/#comment-6972</guid>
		<description>Just so everyone knows... the characters in the above script that need to be changed are the long dashes to double hypens, and the quotes to simple quotes (not smart quotes). Also note that you can test your script from the command line and make sure all three cases (start, stop, restart, etc) work without rebooting each time.

This script and howto really helps. Thanks to everyone who has posted to this topic!!</description>
		<content:encoded><![CDATA[<p>Just so everyone knows&#8230; the characters in the above script that need to be changed are the long dashes to double hypens, and the quotes to simple quotes (not smart quotes). Also note that you can test your script from the command line and make sure all three cases (start, stop, restart, etc) work without rebooting each time.</p>
<p>This script and howto really helps. Thanks to everyone who has posted to this topic!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean O</title>
		<link>http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/comment-page-1/#comment-6955</link>
		<dc:creator>Sean O</dc:creator>
		<pubDate>Mon, 28 Jul 2008 21:22:43 +0000</pubDate>
		<guid isPermaLink="false">http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/#comment-6955</guid>
		<description>The following init script is the head of an example built from the skeleton init script in Ubuntu (/etc/init.d/skeleton) and works for me in Hardy Heron (server edition) just fine.  Please note that my repositories are located at &quot;/home/svn,&quot; you may need to modify this.


#! /bin/sh
### BEGIN INIT INFO
# Provides:          svnserve
# Required-Start:    $local_fs $remote_fs
# Required-Stop:     $local_fs $remote_fs
# Default-Start:     2 3 4 5
# Default-Stop:      S 0 1 6
# Short-Description: SVN initscript
# Description:       This file starts the SVN server (svnserve) at boot and should be
#                    placed in /etc/init.d.
### END INIT INFO

# Author: Sean O&#039;Brien 

# Do NOT &quot;set -e&quot;

# PATH should only include /usr/* if it runs after the mountnfs.sh script
PATH=/usr/sbin:/usr/bin:/sbin:/bin
DESC=&quot;Description of the service&quot;
NAME=svnserve
DAEMON=/usr/bin/$NAME
DAEMON_ARGS=&quot;-d -r /home/svn&quot;
PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME


</description>
		<content:encoded><![CDATA[<p>The following init script is the head of an example built from the skeleton init script in Ubuntu (/etc/init.d/skeleton) and works for me in Hardy Heron (server edition) just fine.  Please note that my repositories are located at &#8220;/home/svn,&#8221; you may need to modify this.</p>
<p>#! /bin/sh<br />
### BEGIN INIT INFO<br />
# Provides:          svnserve<br />
# Required-Start:    $local_fs $remote_fs<br />
# Required-Stop:     $local_fs $remote_fs<br />
# Default-Start:     2 3 4 5<br />
# Default-Stop:      S 0 1 6<br />
# Short-Description: SVN initscript<br />
# Description:       This file starts the SVN server (svnserve) at boot and should be<br />
#                    placed in /etc/init.d.<br />
### END INIT INFO</p>
<p># Author: Sean O&#8217;Brien </p>
<p># Do NOT &#8220;set -e&#8221;</p>
<p># PATH should only include /usr/* if it runs after the mountnfs.sh script<br />
PATH=/usr/sbin:/usr/bin:/sbin:/bin<br />
DESC=&#8221;Description of the service&#8221;<br />
NAME=svnserve<br />
DAEMON=/usr/bin/$NAME<br />
DAEMON_ARGS=&#8221;-d -r /home/svn&#8221;<br />
PIDFILE=/var/run/$NAME.pid<br />
SCRIPTNAME=/etc/init.d/$NAME</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Infrarotkabine</title>
		<link>http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/comment-page-1/#comment-6888</link>
		<dc:creator>Infrarotkabine</dc:creator>
		<pubDate>Fri, 25 Jul 2008 17:24:16 +0000</pubDate>
		<guid isPermaLink="false">http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/#comment-6888</guid>
		<description>Thanks for sharing this guide :-)</description>
		<content:encoded><![CDATA[<p>Thanks for sharing this guide <img src='http://benrobb.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
