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.
calculate-overlay/www-apps/jackett-bin/files/jackett.initd

26 lines
596 B

#!/sbin/openrc-run
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
name="Jackett"
description="Jackett torrent tracker"
depend() {
need net
}
start() {
ebegin "Starting $name"
start-stop-daemon --start --exec /opt/jackett/jackett \
--env HOME=/var/lib/jackett --chdir /var/lib/jackett \
--make-pidfile --pidfile /var/run/jackett.pid \
--background --user jackett:jackett
eend $? "Failed to start $name"
}
stop() {
ebegin "Stopping $name"
start-stop-daemon --stop --pidfile /var/run/jackett.pid
eend $? "Failed to stop $name"
}