summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2009-05-19 09:24:00 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2009-05-19 09:24:00 +0000
commit1e9ec38babaed22a184377bec3f6308ea8496b06 (patch)
tree7ecf21712c723cde5dec3f8a1292eead9f7aa139 /net-p2p/transmission/files
parentRemove rednotebook entry (diff)
downloadgentoo-2-1e9ec38babaed22a184377bec3f6308ea8496b06.tar.gz
gentoo-2-1e9ec38babaed22a184377bec3f6308ea8496b06.tar.bz2
gentoo-2-1e9ec38babaed22a184377bec3f6308ea8496b06.zip
vulnerable
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'net-p2p/transmission/files')
-rw-r--r--net-p2p/transmission/files/transmission-daemon23
1 files changed, 0 insertions, 23 deletions
diff --git a/net-p2p/transmission/files/transmission-daemon b/net-p2p/transmission/files/transmission-daemon
deleted file mode 100644
index eb7dbc02037f..000000000000
--- a/net-p2p/transmission/files/transmission-daemon
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/files/transmission-daemon,v 1.1 2008/05/13 02:54:28 compnerd Exp $
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting transmission-daemon"
- start-stop-daemon --start --quiet --pidfile /var/run/transmission-daemon.pid \
- --exec /usr/bin/transmission-daemon -- --pidfile /var/run/transmission-daemon.pid
- eend $?
-}
-
-stop() {
- ebegin "Stopping transmission-daemon"
- start-stop-daemon --stop --quiet --pidfile /var/run/transmission-daemon
- eend $?
-}
-
-# vim: set ft=gentoo-init-d ts=3 sw=3 et: