diff options
author | Roy Marples <roy@marples.name> | 2007-07-21 12:49:51 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-07-21 12:49:51 +0000 |
commit | 6343b488938a9ba4d53252c9021905ead5bf189a (patch) | |
tree | 1dc6a840ccc43f406333aaeb2c7ad85309c0f978 /conf.d | |
parent | 76f2391ecea775b6d84299620bd1ac18d22b2564 (diff) |
RC_DEPEND_STRICT now controls dependency strictness.
If yes then we only use services in the boot and default runlevels,
regradless of service state.
If no then we take into account coldplugged services and the state
of currently running services.
Fixes #185640.
Diffstat (limited to 'conf.d')
-rw-r--r-- | conf.d/rc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -22,11 +22,11 @@ RC_QUIET="no" # Do we allow any started service in the runlevel to satisfy the depedency # or do we want all of them regardless of state? For example, if net.eth0 -# and net.eth0 are in the default runlevel then with RC_STRICT_DEPEND="no" +# and net.eth0 are in the default runlevel then with RC_DEPEND_STRICT="no" # both will be started, but services that depend on 'net' will work if either -# one comes up. With RC_STRICT_DEPEND="yes" we would require them both to +# one comes up. With RC_DEPEND_STRICT="yes" we would require them both to # come up. -RC_STRICT_DEPEND="no" +RC_DEPEND_STRICT="no" # Do we allow services to be hotplugged? If not, set to RC_HOTPLUG="no" # NOTE: This does not affect anything hotplug/udev/devd related, just the |