5e7369feb3
PR: ports/171117 Submitted by: Lung-Pin Chang <changlp at cs.nctu.edu.tw>
33 lines
792 B
Bash
33 lines
792 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: knockd
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable knockd:
|
|
#
|
|
# knockd_enable (bool): Set it to "YES" to enable knockd
|
|
# Default is "NO".
|
|
# knockd_conf (path): Set full path to config file.
|
|
# Default is "%%PREFIX%%/etc/knockd.conf".
|
|
# knockd_flags (arguments): Set command arguments of knockd daemon
|
|
# Default is "-d".
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="knockd"
|
|
rcvar=knockd_enable
|
|
|
|
load_rc_config $name
|
|
|
|
: ${knockd_enable="NO"}
|
|
: ${knockd_conf="%%PREFIX%%/etc/knockd.conf"}
|
|
: ${knockd_flags="-d"}
|
|
|
|
command="%%PREFIX%%/bin/knockd"
|
|
pidfile="/var/run/knockd.pid"
|
|
required_files=${knockd_conf}
|
|
|
|
run_rc_command "$1"
|