aboutsummaryrefslogtreecommitdiff
path: root/www-apps/wger/files/wger.initd
blob: e3988c3438568ce1b0bfe21533b0f565e2440919 (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
26
27
28
#!/sbin/openrc-run
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

SETTINGS_FILE=${SETTINGS_FILE:-/etc/wger/settings.py}
LISTEN_ADDR=${LISTEN_ADDR:-0.0.0.0}
LISTEN_PORT=${LISTEN_PORT:-8000}

name="wger daemon"
description="Self hosted FLOSS fitness/workout, nutrition and weight tracker"

pidfile="/run/${RC_SVCNAME}.pid"
command="/usr/bin/python"
command_args="-m wger start --settings-path=${SETTINGS_FILE} --address=${LISTEN_ADDR} --port=${LISTEN_PORT}"
command_background=true
command_user="wger:wger"

output_log="/var/log/wger.log"
error_log="/var/log/wger.log"

depend() {
	need net
}

start_pre() {
	checkpath -d -m 0755 -o "$command_user" /var/lib/wger
	checkpath -f -m 0644 -o "$command_user" "$output_log"
}