diff options
author | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2011-02-12 11:21:02 +0000 |
---|---|---|
committer | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2011-02-12 11:21:02 +0000 |
commit | 6a1465cfc9ee4fb18446443bdd6cd8175e2a1797 (patch) | |
tree | 7af2b069aa4a9137223c566bb35153bd219f2e98 /etc/rc.conf | |
parent | b39b0ddeef2edad713cb7dc8b4aaf76c2838a069 (diff) |
Add the rc_scripts variable for rc.d(8).
prodded by espie@
ok miod@
Diffstat (limited to 'etc/rc.conf')
-rw-r--r-- | etc/rc.conf | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/rc.conf b/etc/rc.conf index 8074ceede3f..f582257157b 100644 --- a/etc/rc.conf +++ b/etc/rc.conf @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: rc.conf,v 1.140 2010/10/01 20:51:32 jakob Exp $ +# $OpenBSD: rc.conf,v 1.141 2011/02/12 11:21:01 ajacoutot Exp $ # set these to "NO" to turn them off. otherwise, they're used as flags ldpd_flags=NO # for normal use: "" @@ -107,6 +107,10 @@ afsd_flags= # Flags passed to afsd shlib_dirs= # extra directories for ldconfig, separated # by space +# rc.d(8) daemons scripts +# started in the specified order and stopped in reverse order +rc_scripts= + local_rcconf="/etc/rc.conf.local" [ -f ${local_rcconf} ] && . ${local_rcconf} # Do not edit this line |