Files
minazuki-overlay/net-im/dendrite/files/dendrite.initd-r0
Shin'ya Minazuki c7b0a3e426 Add net-im/dendrite
Signed-off-by: Shin'ya Minazuki <shinyoukai@laidback.moe>
2026-05-09 13:24:00 -03:00

26 lines
615 B
Plaintext

#!/sbin/openrc-run
# Copyright 2026 Shin'ya Minazuki
supervisor="supervise-daemon"
command="/usr/sbin/${RC_SVCNAME}"
command_args="--config /etc/${RC_SVCNAME}.yaml"
command_user="${RC_SVCNAME}"
command_background="true"
pidfile="/run/${RC_SVCNAME}.pid"
depend() {
# PostgreSQL is not listed here due to the SLOT mechanism
# used by the package manager.
# Latest stable version to date is postgresql-18
want caddy nginx
}
start_pre() {
if ! checkpath --file /etc/${RC_SVCNAME}.yaml -; then
eerror "You need a configuration file to proceed"
eerror "See /usr/sbin/dendrite-generate-config"
fi
eend $?
}