saving uncommitted changes in /etc prior to emerge run

This commit is contained in:
hasufell 2015-08-09 20:01:14 +02:00 committed by Hans Wurst
parent 2738da3915
commit f5713f6a2b
1 changed files with 21 additions and 0 deletions

21
init.d/._cfg0000_svnserve Executable file
View File

@ -0,0 +1,21 @@
#!/sbin/runscript
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
# $Id$
description="svn server"
pidfile="/var/run/svnserve.pid"
command="/usr/bin/svnserve"
command_args="--foreground --daemon ${SVNSERVE_OPTS:---root=/var/svn}"
command_background="true"
start_stop_daemon_args="-u ${SVNSERVE_USER:-svn} -g ${SVNSERVE_GROUP:-svnusers}"
depend() {
need net
}
start_pre() {
# Ensure that we run from a readable working dir, and that we do not
# lock filesystems when being run from such a location.
cd /
}