Hide ps error about processes not found (we could be more specific...)

It is superfluous, since we print:
    foo not running? (check /var/run/foo/foo.pid).
This commit is contained in:
christos 2018-04-11 18:51:22 +00:00
parent 0c6b6224b4
commit 7e6759edb0
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: rc.subr,v 1.101 2018/04/01 18:26:51 kre Exp $
# $NetBSD: rc.subr,v 1.102 2018/04/11 18:51:22 christos Exp $
#
# Copyright (c) 1997-2011 The NetBSD Foundation, Inc.
# All rights reserved.
@ -294,10 +294,10 @@ _find_processes()
fi
_proccheck='
ps -o "pid,args" '"$_psargs"' |
ps -o "pid,args" '"$_psargs"' 2>&1 |
while read _npid '"$_fp_args"'; do
case "$_npid" in
PID)
ps:|PID)
continue ;;
esac ; '"$_fp_match"'
echo -n "$_pref$_npid" ;