Files
ebusd/contrib/gentoo/init.d/ebusd
T
2024-01-20 15:06:54 +01:00

18 lines
445 B
Plaintext
Executable File

#!/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}"
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 "${logfile_path}"
checkpath -d -q "${pidfile_path}"
checkpath -f -q "${logfile}"
}