~dricottone/huttese-apk

ref: cbf7811f035eafc421eff2448c2099c56e43c992 huttese-apk/sr.ht/git.sr.ht/git.sr.ht.initd -rwxr-xr-x 959 bytes
cbf7811f — Drew DeVault tlstunnel: upgrade to 0.1.3 2 years ago
                                                                                
0525f623 Drew DeVault
51e82ccf Drew DeVault
0525f623 Drew DeVault
89791a18 Ignas Kiela
c9729477 Drew DeVault
601e65af Drew DeVault
89791a18 Ignas Kiela
51e82ccf Drew DeVault
89791a18 Ignas Kiela
51e82ccf Drew DeVault
0525f623 Drew DeVault
56ecf6e9 Drew DeVault
0525f623 Drew DeVault
51e82ccf Drew DeVault
89791a18 Ignas Kiela
0525f623 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="git.sr.ht"
description="git.sr.ht service"
supervisor=supervise-daemon
GIT_USER=${GIT_USER:-git}
GIT_BIND=${GIT_BIND:-127.0.0.1:5001}
GIT_GUNICORN_CONF=${GIT_GUNICORN_CONF:-/etc/sr.ht/git.sr.ht.gunicorn.conf.py}
GIT_ARGS=${GIT_ARGS:-}
LOGS=/var/log/git.sr.ht.log
prometheus_multiproc_dir=/run/git.sr.ht
supervise_daemon_args="-1 $LOGS -2 $LOGS -e prometheus_multiproc_dir=$prometheus_multiproc_dir"
command="/usr/bin/gunicorn"
command_args="gitsrht.app:app -b $GIT_BIND  -c $GIT_GUNICORN_CONF $GIT_ARGS"
command_user="$GIT_USER:$GIT_USER"
pidfile="/run/${RC_SVCNAME}.pid"

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

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