Re: svn commit: r243324 - head/etc

2012-11-20 Thread Mike Telahun
On 11/20/2012 10:14 AM, Hiroki Sato wrote: > rc_fast, rc_force, and rc_quiet are not intended to be used in > /etc/rc.conf or other config files. These variables have no default > value and will be defined forcibly via {fast,force,quiet}start. If > we use checkyesno() here, it checks whether

Re: svn commit: r243324 - head/etc

2012-11-19 Thread Mike Telahun
> @@ -704,7 +704,10 @@ run_rc_command() > > start) > if [ -z "$rc_fast" -a -n "$rc_pid" ]; then > - echo 1>&2 "${name} already running? > (pid=$rc_pid)." > + if [ -z "$rc_quiet" ]; then Shouldn't this be