aboutsummaryrefslogtreecommitdiffstats
path: root/community/gotosocial/gotosocial.initd
blob: 32a9769cba4a03395e47d7f9f4651f3beb10e499 (plain)
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
#!/sbin/openrc-run

name=gotosocial
command="/usr/bin/gotosocial"
command_args="server start --config-path=/etc/gotosocial/gotosocial.yml"
command_background=true
pidfile="/run/${RC_SVCNAME}.pid"
error_log="/var/log/gotosocial.log"
output_log="/var/log/gotosocial.log"

command_user="gotosocial:gotosocial"

start_pre() {
	checkpath -f --owner "$command_user" --mode 0640 \
		/etc/gotosocial/gotosocial.yml
	checkpath -f --owner "$command_user" --mode 0644 \
		/var/log/gotosocial.log
	checkpath -d --owner "$command_user" --mode 0755 \
		/var/lib/gotosocial/
}

depend() {
	need net
	after firewall
}