SwordArMor-gentoo-overlay/net-misc/routinator/files/routinator-initd
Alarig Le Lay 5e69285fa5
net-misc/routinator: switch to config file
Signed-off-by: Alarig Le Lay <alarig@swordarmor.fr>
2024-12-16 12:42:10 +01:00

26 lines
810 B
Plaintext
Executable file

#!/sbin/openrc-run
# Copyright 2019-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
name="routinator daemon"
description="An RPKI relying party software"
command=/usr/bin/routinator
command_args="--config /etc/routinator.conf server"
pidfile="/run/${RC_SVCNAME}.pid"
command_args_background="--detach --pid-file=${pidfile}"
depend() {
need net
}
start_pre() {
checkpath -d -m 0750 -o routinator:routinator "${ROUTINATOR_BASEDIR}"
if [ ! -d "${ROUTINATOR_BASEDIR}/repository" ] || \
[ ! -d "${ROUTINATOR_BASEDIR}/tals" ]; then
${command} --repository-dir=${ROUTINATOR_BASEDIR}/repository init \
--decline-arin-rpa
chown -R routinator:routinator "${ROUTINATOR_BASEDIR}"/repository
chown -R routinator:routinator "${ROUTINATOR_BASEDIR}"/tals
fi
}