~dricottone/huttese-apk

ref: c86c77a1d66ffff4c0a474a406baba4ddf89c55f huttese-apk/sr.ht/hub.sr.ht/hub.sr.ht.initd -rwxr-xr-x 958 bytes
c86c77a1 — Drew DeVault pkgkit: allow overriding repository 2 years ago
                                                                                
e3c38688 Drew DeVault
89791a18 Ignas Kiela
e3c38688 Drew DeVault
89791a18 Ignas Kiela
e3c38688 Drew DeVault
89791a18 Ignas Kiela
e3c38688 Drew DeVault
4f69429c Drew DeVault
e3c38688 Drew DeVault
89791a18 Ignas Kiela
e3c38688 Drew DeVault
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/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_GUNICORN_CONF=${HUB_GUNICORN_CONF:-/etc/sr.ht/hub.sr.ht.gunicorn.conf.py}
HUB_ARGS=${HUB_ARGS:-}
LOGS=/var/log/hub.sr.ht.log
prometheus_multiproc_dir=/run/hub.sr.ht
supervise_daemon_args="-1 $LOGS -2 $LOGS -e prometheus_multiproc_dir=$prometheus_multiproc_dir"
command="/usr/bin/gunicorn"
command_args="hubsrht.app:app -b $HUB_BIND -c $HUB_GUNICORN_CONF $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"
	# Workaround for https://github.com/OpenRC/openrc/issues/335
	if [ -n "$prometheus_multiproc_dir" ]
	then
		checkpath -d "$prometheus_multiproc_dir" -m 775 -o "$HUB_USER:$HUB_USER"
		rm -rf "$prometheus_multiproc_dir"/*
	fi
}