#!/sbin/openrc-run
name="srht-worker"
description="builds.sr.ht build worker"
depend() {
need net
}
start() {
ebegin "Starting $name"
start-stop-daemon --background --make-pidfile --pidfile /run/$name.pid -u builds \
--exec /usr/bin/builds.sr.ht-worker
eend $?
}
stop() {
ebegin "Stopping $name"
start-stop-daemon --stop --exec /usr/bin/builds.sr.ht-worker --pidfile /run/$name.pid
eend $?
}