#!/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:-}
LOCAL_PG=${LOCAL_PG:-yes}
LOCAL_REDIS=${LOCAL_REDIS:-yes}
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
[ "$LOCAL_REDIS" = "yes" ] && need redis
[ "$LOCAL_PG" = "yes" ] && need postgresql
}
start_pre() {
checkpath -f "$LOGS" -m 644 -o "$HUB_USER:$HUB_USER"
}