Re: subversion on boot

2006-11-03 Thread Daniel Bye
On Tue, Oct 31, 2006 at 02:49:54PM +0100, [EMAIL PROTECTED] wrote: Hello, what is the best way to launch subversion (svnserve) on boot? So far I did not find out something that can be put in /etc/rc.conf. Apart from the very good suggestions already made, you might like to consider using

Re: subversion on boot

2006-11-02 Thread Kirk Strauser
On Tuesday 31 October 2006 7:49 am, [EMAIL PROTECTED] wrote: Hello, what is the best way to launch subversion (svnserve) on boot? How heavily do you plan to hit it? We use plain ol' inetd.conf: svn stream tcp nowait svn /usr/local/bin/svnserve svnserve -i -r /var/svn Since it's

Re: subversion on boot

2006-10-31 Thread Giorgos Keramidas
On 2006-10-31 14:49, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello, what is the best way to launch subversion (svnserve) on boot? So far I did not find out something that can be put in /etc/rc.conf. You can write your own rc.d script and save it in `/usr/local/etc/rc.d'. We have a very

Re: subversion on boot

2006-10-31 Thread [EMAIL PROTECTED]
Giorgos Keramidas wrote: You can write your own rc.d script and save it in `/usr/local/etc/rc.d'. We have a very good guide about the internals of the rc.d scripts now, which you can read online at: http://www.freebsd.org/doc/en_US.ISO8859-1/articles/rc-scripting/ A sample `svnserve'

subversion on boot

2006-10-31 Thread [EMAIL PROTECTED]
Hello, what is the best way to launch subversion (svnserve) on boot? So far I did not find out something that can be put in /etc/rc.conf. Thank you, Iv ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd

Re: subversion on boot

2006-10-31 Thread [LoN]Kamikaze
[EMAIL PROTECTED] wrote: Hello, what is the best way to launch subversion (svnserve) on boot? So far I did not find out something that can be put in /etc/rc.conf. Thank you, Iv The script resides in /usr/local/etc/rc.d/svnserve svnserve_enable=YES in your rc.conf should suffice