freebsd-dev/etc/rc.d/rctl
Edward Tomasz Napierala 0a2a3753ef Modify the rctl rc script to add multiple rules in a single run.
MFC after:	1 month
Sponsored by:	The FreeBSD Foundation
2015-12-01 16:42:39 +00:00

41 lines
439 B
Bash
Executable File

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: rctl
# BEFORE: LOGIN
# KEYWORD: nojail
. /etc/rc.subr
name="rctl"
rcvar="rctl_enable"
start_cmd="rctl_start"
stop_cmd="rctl_stop"
rctl_start()
{
if [ -f ${rctl_rules} ]; then
while read var comments
do
case ${var} in
\#*|'')
;;
*)
echo "${var}"
;;
esac
done < ${rctl_rules} | xargs rctl -a
fi
}
rctl_stop()
{
rctl -r :
}
load_rc_config $name
run_rc_command "$1"