#!/sbin/openrc-run
name="hub.sr.ht"
description="hub.sr.ht service"
supervisor=supervise-daemon
HUB_USER=${HUB_USER:-hub}
HUB_BIND=${HUB_BIND:-127.0.0.1:5014}
HUB_ARGS=${HUB_ARGS:-}
LOGS=/var/log/hub.sr.ht.log
supervise_daemon_args="-1 $LOGS -2 $LOGS"
command="/usr/bin/gunicorn"
command_args="hubsrht.app:app -b $HUB_BIND $HUB_ARGS"
command_user="$HUB_USER:$HUB_USER"
pidfile="/run/${RC_SVCNAME}.pid"
depend() {
need net
use redis
use postgresql
use pgbouncer
}
start_pre() {
checkpath -f "$LOGS" -m 644 -o "$HUB_USER:$HUB_USER"
}