blob: c3c3ff75b41fb37f6c8b377130e14e76aecc5651 (
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
|
#!/bin/sh
# $FreeBSD$
#
# PROVIDE: p910nd
# REQUIRE: DAEMON
# BEFORE: LOGIN
# KEYWORD: shutdown
#
# Add the following line to /etc/rc.conf to enable p910nd:
#
# p910nd_enable="YES"
# # optional
# p910nd_flags=""
#
# Note:
# p910nd bind per default at the ipv6 address!
# If you want p910nd binding at ipv4 address, you have
# to use option 'p910nd_flags' with -i parameter
. /etc/rc.subr
name=p910nd
rcvar=p910nd_enable
command=%%PREFIX%%/sbin/p910nd
load_rc_config $name
run_rc_command "$1"
|