~dricottone/apkbuilds

ref: 45a301f454f9fdfc89489fcf60b248aaf73c9c26 apkbuilds/src/meta.sr.ht/meta.sr.ht-api.initd -rwxr-xr-x 593 bytes
45a301f4Dominic Ricottone I missed another update a month ago
                                                                                
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
#!/sbin/openrc-run
name="meta.sr.ht-api"
description="meta.sr.ht API service"
supervisor=supervise-daemon
META_USER=${META_USER:-meta}
META_BIND=${META_BIND:-:5100}
META_ARGS=${META_ARGS:-}
LOCAL_PG=${LOCAL_PG:-yes}
LOCAL_REDIS=${LOCAL_REDIS:-yes}
LOGS=/var/log/meta.sr.ht-api.log
supervise_daemon_args="-1 $LOGS -2 $LOGS"
command="/usr/bin/metasrht-api"
command_args="-b $META_BIND"
command_user="$META_USER:$META_USER"
pidfile="/run/${RC_SVCNAME}.pid"

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

start_pre() {
	checkpath -f "$LOGS" -m 644 -o "$META_USER:$META_USER"
}