summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorajacoutot <ajacoutot@openbsd.org>2015-01-02 08:03:28 +0000
committerajacoutot <ajacoutot@openbsd.org>2015-01-02 08:03:28 +0000
commit7d8a4a1f4ea6bee3743d7dca262c619c26db48f4 (patch)
treecc85ee411f200a6d722f055b2a4f094477d4e5b3
parentupdate currency exchange rates; (diff)
downloadwireguard-openbsd-7d8a4a1f4ea6bee3743d7dca262c619c26db48f4.tar.xz
wireguard-openbsd-7d8a4a1f4ea6bee3743d7dca262c619c26db48f4.zip
Add a comment about the default values being duplicated in rcctl(8).
discussed with schwarze@
-rw-r--r--etc/rc.d/rc.subr7
1 files changed, 3 insertions, 4 deletions
diff --git a/etc/rc.d/rc.subr b/etc/rc.d/rc.subr
index 0c9c7dc2afc..02f67ff728f 100644
--- a/etc/rc.d/rc.subr
+++ b/etc/rc.d/rc.subr
@@ -1,4 +1,4 @@
-# $OpenBSD: rc.subr,v 1.90 2014/11/17 13:52:44 ajacoutot Exp $
+# $OpenBSD: rc.subr,v 1.91 2015/01/02 08:03:28 ajacoutot Exp $
#
# Copyright (c) 2010, 2011, 2014 Antoine Jacoutot <ajacoutot@openbsd.org>
# Copyright (c) 2010, 2011 Ingo Schwarze <schwarze@openbsd.org>
@@ -16,9 +16,6 @@
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-
-# Default functions and variables used by rc.d(8) scripts.
-
_rc_err() {
echo "$1" 1>&2
[ -n "${2}" ] && exit "${2}" || exit 1
@@ -143,6 +140,7 @@ _rc_parse_conf() {
_rc_do _rc_quirks
}
+# return if we only want internal functions
[ -n "${FUNCS_ONLY}" ] && return
rc_start() {
@@ -267,6 +265,7 @@ eval _rctimeout=\${${_name}_timeout}
getcap -f /etc/login.conf ${_name} 1>/dev/null 2>&1 && \
daemon_class=${_name}
+# set default values; duplicated in rcctl(8)
[ -z "${daemon_class}" ] && daemon_class=daemon
[ -z "${daemon_user}" ] && daemon_user=root
[ -z "${daemon_timeout}" ] && daemon_timeout=30