summaryrefslogtreecommitdiff
path: root/etc/rc.d
diff options
context:
space:
mode:
authorAntoine Jacoutot <ajacoutot@cvs.openbsd.org>2016-03-26 13:59:37 +0000
committerAntoine Jacoutot <ajacoutot@cvs.openbsd.org>2016-03-26 13:59:37 +0000
commit54b844d7feb8b37cd8c58a94a1ec9c6a8dbe3950 (patch)
tree694cff5ea5dab7c125435c58f900cd419a5d0c4a /etc/rc.d
parentf0cbf8b55801089326e17aefe4d46a29d31cf36c (diff)
Make it possible to get usage as a non-root user.
ok robert@
Diffstat (limited to 'etc/rc.d')
-rw-r--r--etc/rc.d/rc.subr6
1 files changed, 4 insertions, 2 deletions
diff --git a/etc/rc.d/rc.subr b/etc/rc.d/rc.subr
index 3615cf8a13d..cd083d14439 100644
--- a/etc/rc.d/rc.subr
+++ b/etc/rc.d/rc.subr
@@ -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"