diff options
Diffstat (limited to 'net-p2p/bittorrent/files/bttrack.rc')
-rw-r--r-- | net-p2p/bittorrent/files/bttrack.rc | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/net-p2p/bittorrent/files/bttrack.rc b/net-p2p/bittorrent/files/bttrack.rc deleted file mode 100644 index fc445de8bbec..000000000000 --- a/net-p2p/bittorrent/files/bttrack.rc +++ /dev/null @@ -1,23 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2005Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittorrent/files/bttrack.rc,v 1.2 2006/02/16 17:34:14 sekretarz Exp $ - -depend() { - need net -} - -start() { - ebegin "Starting bttrack" - start-stop-daemon --start --quiet --background --make-pidfile \ - --pidfile /var/run/bttrack.pid \ - --exec /usr/bin/bittorrent-tracker -- --port ${PORT} \ - --dfile ${DFILE} --favicon ${FAVICON} --logfile ${LOGFILE} - eend $? -} - -stop() { - ebegin "Stopping bttrack" - start-stop-daemon --stop --quiet --pidfile /var/run/bttrack.pid - eend $? -} |