#!/sbin/openrc-run
name="todo.sr.ht"
description="todo.sr.ht service"
# Override these with /etc/conf.d/todo.sr.ht
TODO_USER=${TODO_USER:-todo}
TODO_BIND=${TODO_BIND:-127.0.0.1:5000}
TODO_ARGS=${TODO_ARGS:-}
LOCAL_PG=${LOCAL_PG:-yes}
LOCAL_REDIS=${LOCAL_REDIS:-yes}
LOGS=/var/log/todo.sr.ht.log
depend() {
need net
[ "$LOCAL_REDIS" = "yes" ] && need redis
[ "$LOCAL_PG" = "yes" ] && need postgresql
}
start() {
ebegin "Starting $name"
touch "$LOGS"
chown $TODO_USER "$LOGS"
start-stop-daemon \
-u $TODO_USER \
-1 "$LOGS" \
-2 "$LOGS" \
--background \
--make-pidfile \
--pidfile /run/$name.pid \
--exec /usr/bin/gunicorn -- \
todosrht.app:app -b ${TODO_BIND} ${TODO_ARGS}
eend $?
}
stop() {
ebegin "Stopping $name"
start-stop-daemon --stop --exec /usr/bin/gunicorn --pidfile /run/$name.pid
eend $?
}