blob: cbc20f6f85505e1a1e1017733e44d3a895d064e5 (
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
30
31
|
#!/bin/sh
# PROVIDE: ebnetd
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable ebnetd:
# ebnetd_enable (bool): Set to "NO" by default.
# Set it to "YES" to enable ebnetd.
# ebnetd_flags (str): Set to "" by default.
# Extra flags passed to start ebnetd.
. /etc/rc.subr
# ebnetd
name=ebnetd
rcvar=ebnetd_enable
command="%%PREFIX%%/sbin/${name}"
pidfile="/var/run/ebnetd/ebnd.pid"
required_dirs="/var/run/ebnetd"
required_files=%%PREFIX%%/etc/ebnetd.conf
ebnetd_enable=${ebnetd_enable:-"NO"}
ebnetd_flags=${ebnetd_flags:-""}
sig_reload=SIGHUP
extra_commands="reload"
load_rc_config $name
run_rc_command "$1"
|