diff options
author | Christian Heim <phreak@gentoo.org> | 2006-04-24 14:30:20 +0000 |
---|---|---|
committer | Christian Heim <phreak@gentoo.org> | 2006-04-24 14:30:20 +0000 |
commit | c7b10efd125522f3beeb3144b8a5b4cc511d93cf (patch) | |
tree | 09506e4c389d58f5303799712bf9dfcae8117835 /etc | |
parent | Merging r1965 (diff) | |
download | baselayout-vserver-c7b10efd125522f3beeb3144b8a5b4cc511d93cf.tar.gz baselayout-vserver-c7b10efd125522f3beeb3144b8a5b4cc511d93cf.tar.bz2 baselayout-vserver-c7b10efd125522f3beeb3144b8a5b4cc511d93cf.zip |
Merging r2014
svn path=/baselayout-vserver/trunk/; revision=341
Diffstat (limited to 'etc')
-rw-r--r-- | etc/conf.d/local.start | 2 | ||||
-rw-r--r-- | etc/conf.d/rc | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/etc/conf.d/local.start b/etc/conf.d/local.start index a55d2cc..7a20c14 100644 --- a/etc/conf.d/local.start +++ b/etc/conf.d/local.start @@ -1,5 +1,5 @@ # /etc/conf.d/local.start # This is a good place to load any misc programs -# on startup ( use 1>&2 to hide output) +# on startup (use &>/dev/null to hide output) diff --git a/etc/conf.d/rc b/etc/conf.d/rc index 3bbcecc..875fd11 100644 --- a/etc/conf.d/rc +++ b/etc/conf.d/rc @@ -10,6 +10,17 @@ RC_TTY_NUMBER=0 RC_PARALLEL_STARTUP="no" +# Dynamic /dev managers can trigger coldplug events which cause services to +# start before we are ready for them. If this happens, we can defer these +# services to start in the boot runlevel. If you don't want this then set +# RC_COLDPLUG to no. +# For more fine grained control you can list full service names to allow +# them to coldplug and prefix them with ! so they don't coldplug. +# Example - RC_COLDPLUG="net.wlan !net.*" +# This allows net.wlan and any service not matching net.* to coldplug. + +RC_COLDPLUG="yes" + # RC_NET_STRICT_CHECKING allows some flexibility with the 'net' service. # The following values are allowed: # none - The 'net' service is always considered up. |