summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-apps/bitten/files/bitten.initd')
-rw-r--r--www-apps/bitten/files/bitten.initd20
1 files changed, 0 insertions, 20 deletions
diff --git a/www-apps/bitten/files/bitten.initd b/www-apps/bitten/files/bitten.initd
deleted file mode 100644
index 1c4582d536c0..000000000000
--- a/www-apps/bitten/files/bitten.initd
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Id$
-
-start() {
- ebegin "Starting Bitten slave"
- start-stop-daemon --start --user ${BITTEN_USER:-bitten} --group ${BITTEN_GROUP:-tracd} \
- --pidfile /var/run/bitten.pid --make-pidfile --background \
- --exec /usr/bin/bitten-slave -- \
- ${BITTEN_SERVER} -d ${BITTEN_TMPDIR:-/var/tmp/bitten} -l ${BITTEN_LOG:-/var/log/bitten.log} \
- ${BITTEN_OPTS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping Bitten slave"
- start-stop-daemon --stop --quiet --pidfile /var/run/bitten.pid
- eend $?
-}