Deleted Added
full compact
2c2
< # $FreeBSD: head/etc/rc.subr 197790 2009-10-05 20:11:33Z hrs $
---
> # $FreeBSD: head/etc/rc.subr 197947 2009-10-10 22:17:03Z dougb $
400a401,414
> # check_startmsgs
> # If rc_quiet is set (usually as a result of using faststart at
> # boot time) check if rc_startmsgs is enabled.
> #
> check_startmsgs()
> {
> if [ -n "$rc_quiet" ]; then
> checkyesno rc_startmsgs
> else
> return 0
> fi
> }
>
> #
711,717c725
< _show_startmsgs=1
< if [ -n "${rc_quiet}" ]; then
< if ! checkyesno rc_startmsgs; then
< unset _show_startmsgs
< fi
< fi
< [ -n "$_show_startmsgs" ] && echo "Starting ${name}."
---
> check_startmsgs && echo "Starting ${name}."