Browse Source

Make it possible to get usage as a non-root user.

ok robert@
OPENBSD_6_0
ajacoutot 8 years ago
parent
commit
06441a2afe
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      src/etc/rc.d/rc.subr

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

@ -1,6 +1,6 @@
# $OpenBSD: rc.subr,v 1.106 2016/03/26 09:21:24 ajacoutot Exp $
# $OpenBSD: rc.subr,v 1.107 2016/03/26 13:59:36 ajacoutot Exp $
#
# Copyright (c) 2010, 2011, 2014 Antoine Jacoutot <ajacoutot@openbsd.org>
# Copyright (c) 2010, 2011, 2014, 2015 Antoine Jacoutot <ajacoutot@openbsd.org>
# Copyright (c) 2010, 2011 Ingo Schwarze <schwarze@openbsd.org>
# Copyright (c) 2010, 2011, 2014 Robert Nagy <robert@openbsd.org>
#
@ -169,6 +169,8 @@ rc_stop() {
rc_cmd() {
local _bg _n
[ -n "${1}" ] && echo "${_rc_actions}" | grep -qw -- ${1} || _rc_usage
[ "$(id -u)" -eq 0 ] || \
[ X"${rc_usercheck}" != X"NO" -a X"$1" = "Xcheck" ] || \
_rc_err "$0: need root privileges"


Loading…
Cancel
Save