#!/sbin/openrc-run
name="srht-worker"
description="builds.sr.ht build worker"
# Override these with /etc/conf.d/builds.sr.ht-worker
# A common parameter might be EXTRA_ARGS=-workers [n] where n != nproc
EXTRA_ARGS=${EXTRA_ARGS:-}
LOGS=/var/log/builds.sr.ht-worker.log
BUILD_USER=builds
depend() {
need net
}
start() {
ebegin "Starting $name"
touch "$LOGS"
chown ${BUILD_USER} "$LOGS"
start-stop-daemon \
--background \
--make-pidfile \
--pidfile /run/$name.pid \
-1 "$LOGS" \
-2 "$LOGS" \
-u "${BUILD_USER}" \
--exec /usr/bin/builds.sr.ht-worker -- $EXTRA_ARGS
eend $?
}
stop() {
ebegin "Stopping $name"
start-stop-daemon --stop \
--exec /usr/bin/builds.sr.ht-worker \
--pidfile /run/$name.pid
eend $?
}