summaryrefslogtreecommitdiffstats
path: root/net/throttled/files/throttled.in
blob: 13d794bb3620e89c1675736414a7d484589384a8 (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
#!/bin/sh

# PROVIDE: throttled
# REQUIRE: ipfw
# BEFORE: NETWORKING
# KEYWORD: nojail

. /etc/rc.subr

name="throttled"
rcvar=throttled_enable

start_precmd="throttled_precmd"
command="%%PREFIX%%/sbin/throttled-startup"
procname="%%PREFIX%%/sbin/throttled"

throttled_precmd()
{
	if ! ${SYSCTL} net.inet.ip.fw.enable > /dev/null 2>&1; then
		warn "IPFW must be enabled"
		return 1
	fi
	return 0
}

load_rc_config $name

: ${throttled_enable="NO"}

run_rc_command "$1"
OpenPOWER on IntegriCloud