Author: hrs Date: Tue Nov 20 04:45:04 2012 New Revision: 243324 URL: http://svnweb.freebsd.org/changeset/base/243324
Log: Do not put "already running" message when rc_quiet=yes. PR: bin/165477 Modified: head/etc/rc.subr Modified: head/etc/rc.subr ============================================================================== --- head/etc/rc.subr Tue Nov 20 03:57:54 2012 (r243323) +++ head/etc/rc.subr Tue Nov 20 04:45:04 2012 (r243324) @@ -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 + echo 1>&2 "${name} already running? " \ + "(pid=$rc_pid)." + fi return 1 fi _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"