Files
gentoo-overlay/net-misc/pyload/files/pyload
2011-11-20 22:14:48 +00:00

24 lines
382 B
Plaintext

#!/sbin/runscript
NAME="PyLoad Daemon"
PIDFILE=/var/run/pyload.pid
depend() {
need net
}
start() {
ebegin "Starting PyLoad"
start-stop-daemon --start --quiet --background \
--pidfile ${PIDFILE} \
--exec /usr/bin/env python2 /opt/pyload/pyLoadCore.py --
eend $?
}
stop() {
ebegin "Stopping PyLoad"
start-stop-daemon --stop --quiet \
--pidfile ${PIDFILE}
eend $?
}