~dricottone/huttese-apk

ref: fa81c2e9ae591ff37ce410735a3d4e6e6c89906a huttese-apk/sr.ht/man.sr.ht/man.sr.ht.initd -rwxr-xr-x 958 bytes
fa81c2e9 — Drew DeVault README.md: remove note about letting *.sr.ht upgrade themselves 2 years ago
                                                                                
81b94065 Drew DeVault
d551c20c Drew DeVault
81b94065 Drew DeVault
e8f92754 Drew DeVault
89791a18 Ignas Kiela
c9729477 Drew DeVault
81b94065 Drew DeVault
89791a18 Ignas Kiela
d551c20c Drew DeVault
89791a18 Ignas Kiela
d551c20c Drew DeVault
81b94065 Drew DeVault
4d9c407a Drew DeVault
81b94065 Drew DeVault
d551c20c Drew DeVault
89791a18 Ignas Kiela
81b94065 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="man.sr.ht"
description="man.sr.ht service"
supervisor=supervise-daemon
MAN_USER=${MAN_USER:-man}
MAN_BIND=${MAN_BIND:-127.0.0.1:5004}
MAN_GUNICORN_CONF=${MAN_GUNICORN_CONF:-/etc/sr.ht/man.sr.ht.gunicorn.conf.py}
MAN_ARGS=${MAN_ARGS:-}
LOGS=/var/log/man.sr.ht.log
prometheus_multiproc_dir=/run/man.sr.ht
supervise_daemon_args="-1 $LOGS -2 $LOGS -e prometheus_multiproc_dir=$prometheus_multiproc_dir"
command="/usr/bin/gunicorn"
command_args="mansrht.app:app -b $MAN_BIND -c $MAN_GUNICORN_CONF $MAN_ARGS"
command_user="$MAN_USER:$MAN_USER"
pidfile="/run/${RC_SVCNAME}.pid"

depend() {
	need net
	use redis
	use postgresql
	use pgbouncer
}

start_pre() {
	checkpath -f "$LOGS" -m 644 -o "$MAN_USER:$MAN_USER"
	# Workaround for https://github.com/OpenRC/openrc/issues/335
	if [ -n "$prometheus_multiproc_dir" ]
	then
		checkpath -d "$prometheus_multiproc_dir" -m 775 -o "$MAN_USER:$MAN_USER"
		rm -rf "$prometheus_multiproc_dir"/*
	fi
}