Browse Source

Revert the revert and match on the daemon_user again.

We'll see if something else breaks but it's the right thing to do.
discussed with robert@
OPENBSD_6_0
ajacoutot 8 years ago
parent
commit
af5c782a7a
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      src/etc/rc.d/rc.subr

+ 4
- 4
src/etc/rc.d/rc.subr View File

@ -1,4 +1,4 @@
# $OpenBSD: rc.subr,v 1.111 2016/04/27 12:58:12 ajacoutot Exp $
# $OpenBSD: rc.subr,v 1.112 2016/04/27 17:29:50 ajacoutot Exp $
#
# Copyright (c) 2010, 2011, 2014-2016 Antoine Jacoutot <ajacoutot@openbsd.org>
# Copyright (c) 2010, 2011 Ingo Schwarze <schwarze@openbsd.org>
@ -155,15 +155,15 @@ rc_start() {
}
rc_check() {
pgrep -T "${daemon_rtable}" -q -xf "${pexp}"
pgrep -T "${daemon_rtable}" -U "${daemon_user}" -q -xf "${pexp}"
}
rc_reload() {
pkill -T "${daemon_rtable}" -HUP -xf "${pexp}"
pkill -T "${daemon_rtable}" -U "${daemon_user}" -HUP -xf "${pexp}"
}
rc_stop() {
pkill -T "${daemon_rtable}" -xf "${pexp}"
pkill -T "${daemon_rtable}" -U "${daemon_user}" -xf "${pexp}"
}
rc_cmd() {


Loading…
Cancel
Save