diff options
author | 2012-08-21 06:38:52 +0000 | |
---|---|---|
committer | 2012-08-21 06:38:52 +0000 | |
commit | dfc493ad0c84649e5d6ac6de36f7f9710cbdb883 (patch) | |
tree | c35a73ee125009d336b4ec3696434903e1cfdf03 | |
parent | add -q "silent" option similar to grep (diff) | |
download | wireguard-openbsd-dfc493ad0c84649e5d6ac6de36f7f9710cbdb883.tar.xz wireguard-openbsd-dfc493ad0c84649e5d6ac6de36f7f9710cbdb883.zip |
Use the new "-q" option of pgrep(1) instead of redirecting stdout
to /dev/null.
-rw-r--r-- | etc/rc.d/rc.subr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc.d/rc.subr b/etc/rc.d/rc.subr index a5d7a97173c..ad89293b07f 100644 --- a/etc/rc.d/rc.subr +++ b/etc/rc.d/rc.subr @@ -1,4 +1,4 @@ -# $OpenBSD: rc.subr,v 1.62 2012/08/13 10:10:07 ajacoutot Exp $ +# $OpenBSD: rc.subr,v 1.63 2012/08/21 06:38:52 ajacoutot Exp $ # # Copyright (c) 2010, 2011 Antoine Jacoutot <ajacoutot@openbsd.org> # Copyright (c) 2010, 2011 Ingo Schwarze <schwarze@openbsd.org> @@ -48,7 +48,7 @@ rc_start() { } rc_check() { - pgrep -f "^${pexp}" >/dev/null + pgrep -q -f "^${pexp}" } rc_reload() { |