summaryrefslogtreecommitdiff
blob: 38bdb22d034e502681f199fba575114c8c4d06a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/sbin/openrc-run
# Copyright 1999-2024 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

command="/usr/bin/ebusd"
command_args="${EBUSD_OPTS}"
ebusd_path="/var/lib/ebusd"
html_path="${ebusd_path}/html"
logfile_path="/var/log/ebusd"
logfile="${logfile_path}/ebusd.log"
name="eBUS daemon"
pidfile_path="/run/ebusd"
pidfile="${pidfile_path}/ebusd.pid"

start_pre() {
	checkpath -d -q "${ebusd_path}" "${html_path}"
	checkpath -d -q "${logfile_path}"
	checkpath -d -q "${pidfile_path}"
	checkpath -f -q "${logfile}"
}