You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-p2p/bittornado/files/bttrack.rc

23 lines
519 B

#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need net
}
start() {
ebegin "Starting bttrack"
start-stop-daemon --start --quiet --background --make-pidfile \
--pidfile /var/run/bttrack.pid \
--exec /usr/bin/bttrack.py -- --port ${PORT} \
--dfile ${DFILE} --favicon ${FAVICON} --logfile ${LOGFILE}
eend $?
}
stop() {
ebegin "Stopping bttrack"
start-stop-daemon --stop --quiet --pidfile /var/run/bttrack.pid
eend $?
}