From 8a841507a2f2bace4ec4668db1668ddc4b0e5e30 Mon Sep 17 00:00:00 2001 From: hasufell Date: Thu, 25 Jun 2015 21:42:35 +0200 Subject: [PATCH] saving uncommitted changes in /etc prior to emerge run --- init.d/._cfg0000_svnserve | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 init.d/._cfg0000_svnserve diff --git a/init.d/._cfg0000_svnserve b/init.d/._cfg0000_svnserve new file mode 100755 index 0000000..f0db9b1 --- /dev/null +++ b/init.d/._cfg0000_svnserve @@ -0,0 +1,21 @@ +#!/sbin/runscript +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/subversion/files/svnserve.initd3,v 1.1 2015/04/09 12:58:45 polynomial-c Exp $ + +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 / +}