SwordArMor-gentoo-overlay/net-misc/routinator/files/routinator-initd

23 lines
595 B
Plaintext
Executable File

#!/sbin/openrc-run
# Copyright 2019 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="--syslog --base-dir=${ROUTINATOR_BASEDIR} server
${ROUTINATOR_OPTS}"
depend() {
need net
}
start_pre() {
checkpath -d -m 0750 -o routinator:routinator /var/lib/routinator
if [ ! -d "${ROUTINATOR_BASEDIR}/repository" ] || \
[ ! -d "${ROUTINATOR_BASEDIR}/tals" ]; then
${command} --base-dir=${ROUTINATOR_BASEDIR} init \
--decline-arin-rpa
fi
}