blob: 0ab5492d02d7bd1e9f59a4505a511c3c8bace07c (
plain)
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
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: nncp-caller
# REQUIRE: DAEMON NETWORKING FILESYSTEMS
# KEYWORD: shutdown
#
# Add these lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# nncp_caller_enable (bool): Set to NO by default.
# Set it to YES to enable nncp-caller.
# nncp_caller_config (path): Set to %%PREFIX%%/etc/nncp.hjson by default.
. /etc/rc.subr
name=nncp_caller
rcvar=nncp_caller_enable
load_rc_config $name
: ${nncp_caller_enable:="NO"}
: ${nncp_caller_config="%%PREFIX%%/etc/nncp.hjson"}
command=%%PREFIX%%/bin/nncp-caller
command_args="-quiet -cfg $nncp_caller_config &"
run_rc_command "$1"
|