freebsd-dev/etc/rc.d/iovctl
Ryan Stone 6888132b53 Add an rc.d script to invoke iovctl(8) during boot
Differential Revision:		https://reviews.freebsd.org/D88
Reviewed by:			wblock, emaste, allanjude
MFC after:			1 month
Relnotes:			yes
Sponsored by:			Sandvine Inc.
2015-03-01 00:58:23 +00:00

40 lines
445 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: iovctl
# REQUIRE: FILESYSTEMS sysctl
. /etc/rc.subr
name="iovctl"
command="/usr/sbin/iovctl"
start_cmd="iovctl_start"
stop_cmd="iovctl_stop"
run_iovctl()
{
local _f flag
flag=$1
for _f in ${iovctl_files} ; do
if [ -r ${_f} ]; then
${command} ${flag} -f ${_f} > /dev/null
fi
done
}
iovctl_start()
{
run_iovctl -E
}
iovctl_stop()
{
run_iovctl -D
}
load_rc_config $name
run_rc_command "$1"