Index: head/etc/rc.d/rctl =================================================================== --- head/etc/rc.d/rctl (revision 291595) +++ head/etc/rc.d/rctl (revision 291596) @@ -1,40 +1,40 @@ #!/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 \#*|'') ;; *) - rctl -a "${var}" + echo "${var}" ;; esac - done < ${rctl_rules} + done < ${rctl_rules} | xargs rctl -a fi } rctl_stop() { rctl -r : } load_rc_config $name run_rc_command "$1"