ID #1084
How can i setup svnserve as autostart in debian?
The subversion server svnserve doesnt have an default script in /etc/init.d for easy starting the server so we have to create our own one which is very easy.
Go to the script directory
cd /etc/init.d
create a new script file
nano svnserve
input the following single line of code in the file
svnserve -d
set the right permissions to make it executable
chmod +x svnserve
add the script to autostart
update-rc.d svnserve defaults
finished! you can start svnserve with
/etc/init.d/svnserve
and it should be started automatically after server restart!
Tags: svn subversion
Related entries:
- Can't update table in stored function/trigger because it is already used by statement which invoked this stored function/trigger
- I am using Infosoftglobal FusionCharts. When I want to update the Chart with javascript setXMLData nothing is happen in Internet Explorer. Everything works fine in Firefox!
- Is there a way to start programs at startup in Debian like the Windows Autostart?
- How can I create multiple field insert (trigger)into order tracking table(track_id is primary key) upon updating orders table where order_id is primary key. For example insert order_id and customer name into tracking table upon order update in orders table.
- Why do I get the error dialog: "Missing file COMDLG32.OCX" ?
Last update: 2009-09-28 20:46
Author: Christian Trummer
Revision: 1.0
You cannot comment on this entry