Browse Source

Revert matching on the daemon user for now; it breaks sndiod handling which

does start as root but does not have a root master process and instead
changed its uid.
reported by deraadt@
OPENBSD_6_0
ajacoutot 8 years ago
parent
commit
1ec36b20ca
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.110 2016/04/26 17:00:20 ajacoutot Exp $
# $OpenBSD: rc.subr,v 1.111 2016/04/27 12:58:12 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}" -U "${daemon_user}" -q -xf "${pexp}"
pgrep -T "${daemon_rtable}" -q -xf "${pexp}"
}
rc_reload() {
pkill -T "${daemon_rtable}" -U "${daemon_user}" -HUP -xf "${pexp}"
pkill -T "${daemon_rtable}" -HUP -xf "${pexp}"
}
rc_stop() {
pkill -T "${daemon_rtable}" -U "${daemon_user}" -xf "${pexp}"
pkill -T "${daemon_rtable}" -xf "${pexp}"
}
rc_cmd() {


Loading…
Cancel
Save