blob: 105740d62ffcbcd427de6fe1ae495fd97b2885df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#!/bin/sh
# PROVIDE: routinator
# REQUIRE: DAEMON
# REQUIRE: LOGIN
# KEYWORD: shutdown
. /etc/rc.subr
desc="RPKI signed route collector and validator"
name=routinator
rcvar=routinator_enable
load_rc_config ${name}
: ${name_enable:=NO}
: ${wrkdir:=/var/routinator}
pidfile=${wrkdir}/${name}.pid
routinator_config=${routinator_conf:-"%%ETCDIR%%/routinator.conf"}
required_file=${routinator_config}
start_precmd=check_init
command="%%PREFIX%%/bin/${name}"
command_args="-c ${routinator_config} --rsync-command=%%PREFIX%%/bin/rsync server -d --user %%USERS%% --group %%GROUPS%% --pid-file=${pidfile} --working-dir=${wrkdir}"
check_init()
{
if [ ! -d ${wrkdir} ]; then
echo
echo -n "Need to create repository ${wrkdir} "
echo "see man routinator"
echo
exit 1
fi
}
run_rc_command "$1"
|