Files
gentoo/sys-process/below/files/below-r1.initd
Florian Schmaus e2a25693bf sys-process/below: add 0.7.1
Signed-off-by: Florian Schmaus <flow@gentoo.org>
2024-01-12 19:26:42 +01:00

30 lines
631 B
Plaintext

#!/sbin/openrc-run
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
pidfile=/run/${RC_SVCNAME}.pid
LOGPATH=/var/log/${RC_SVCNAME}
DATADIR=/var/lib/${RC_SVCNAME}
command_user=root
command=/usr/bin/below
command_args="record ${BELOW_EXTRA_ARGS}"
command_background=true
directory="/var/lib/below"
output_log="${LOGPATH}/${RC_SVCNAME}.log"
error_log="${LOGPATH}/${RC_SVCNAME}.err"
depend() {
need localmount
after bootmisc
}
start() {
if [ ! -d "${LOGPATH}" ] ; then
mkdir -p "${LOGPATH}"
fi
if [ ! -d "${DATADIR}" ] ; then
mkdir -p "${DATADIR}"
fi
default_start
}