freebsd-dev/etc/rc.d/rctl
Edward Tomasz Napierala cb89c25099 Add startup script, to load rules from /etc/rctl.conf.
Sponsored by:	The FreeBSD Foundation
Reviewed by:	kib (ealier version)
2011-03-30 18:32:45 +00:00

40 lines
408 B
Bash
Executable File

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